From b1d0383c31cc936710fb9099f6d9e86e7eeae569 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 5 Jan 2005 05:04:55 +0000 Subject: made default configurations generic two more flext tutorials fixes for Max headers cleanups updated build system updated tutorials revised the documentation updated for OSX upgraded version number svn path=/trunk/; revision=2465 --- externals/grill/flext/tutorial/makefile.pd-cygwin | 71 ----------------------- 1 file changed, 71 deletions(-) delete mode 100644 externals/grill/flext/tutorial/makefile.pd-cygwin (limited to 'externals/grill/flext/tutorial/makefile.pd-cygwin') diff --git a/externals/grill/flext/tutorial/makefile.pd-cygwin b/externals/grill/flext/tutorial/makefile.pd-cygwin deleted file mode 100644 index 853abfc6..00000000 --- a/externals/grill/flext/tutorial/makefile.pd-cygwin +++ /dev/null @@ -1,71 +0,0 @@ -# flext tutorial examples -# Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net) -# -# Makefile for gcc @ cygwin -# -# usage: make -f makefile.pd-cygwin -# -# ----------------------------------------------------- -# -# note: the thread examples don't compile with cygwin -# -# ----------------------------------------------------- - -include config-pd-cygwin.txt - -FLEXTLIB=$(FLEXTPATH)/flext-pdwin.lib - -INCLUDES=$(PDPATH)/src -LIBPATH=$(PDPATH)/bin -FLAGS=-DFLEXT_SYS=2 -CFLAGS=${UFLAGS} -O6 -fno-rtti -LIBS=m pd - - -# the rest can stay untouched -# ---------------------------------------------- - -# all the source files from the package - -EXAMPLES=simple1 simple2 simple3 adv1 adv2 adv3 timer1 attr1 attr2 attr3 signal1~ signal2~ lib1 # thread1 thread2 - -ifdef SNDOBJ -INCLUDES+=$(SNDOBJ) -EXAMPLES+=sndobj1~ -LIBS+=sndobj -endif - -ifdef STK -INCLUDES+=$(STK) -EXAMPLES+=stk1~ stk2~ -LIBS+=stk -endif - -TARGETS=$(patsubst %,$(OUTPATH)/%.dll,$(EXAMPLES)) - -# default target -all: $(OUTPATH) $(TARGETS) - - -$(OUTPATH)/%~.dll : $(OUTPATH)/%.dll - mv $^ $@ - -$(SRCS): $(HDRS) - touch $@ - -$(OUTPATH): - -mkdir $(OUTPATH) - -$(OUTPATH)/%.o : %/main.cpp - $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@ - -$(OUTPATH)/%.dll : $(OUTPATH)/%.o $(FLEXTLIB) - $(CXX) $(LDFLAGS) -shared $(patsubst %,-L%,$(LIBPATH)) $^ $(patsubst %,-l%,$(LIBS)) -o $@ - rm $< - chmod 755 $@ - - -.PHONY: clean -clean: - rm -f $(OUTPATH)/*.o $(TARGETS) - -- cgit v1.2.1