From 906c8c819e6089dcdde1925e82bdb88a10c3a5b1 Mon Sep 17 00:00:00 2001 From: Thomas O Fredericks Date: Thu, 4 Oct 2007 16:31:59 +0000 Subject: deleted extra directories svn path=/trunk/externals/tof/; revision=8785 --- destroysend/makefile | 66 ---------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100755 destroysend/makefile (limited to 'destroysend/makefile') diff --git a/destroysend/makefile b/destroysend/makefile deleted file mode 100755 index 124f762..0000000 --- a/destroysend/makefile +++ /dev/null @@ -1,66 +0,0 @@ -current: - echo make pd_linux, pd_win, or pd_darwin - -clean: ; rm -f *.pd_linux *.o - - - - - -# ----------------------- WINDOWS ----------------------- - -pd_win: destroysend.dll - -WINPDPATH = /home/tom/pd0.4 - -.SUFFIXES: .dll - -WINCFLAGS = -Wall -W -Wshadow -Wstrict-prototypes -DPD -DNT -W3 -WX -Werror -Wno-unused -mms-bitfields -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer - -WININCLUDE = -I.. -I../include -I$(WINPDPATH)/src - -LDFLAGS = -shared - -.c.dll: - gcc -mms-bitfields $(WINCFLAGS) $(WININCLUDE) -o $*.o -c $*.c - gcc $(LDFLAGS) -o $*.dll $*.o $(WINPDPATH)/bin/pd.dll - strip --strip-unneeded $*.dll - rm -f $*.o - - -# ----------------------- LINUX i386 ----------------------- - -pd_linux: destroysend.pd_linux - - - -.SUFFIXES: .pd_linux - -PDPATH = /home/tom/pd/cvs/pd - -LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ - -Wall -W -Wshadow -Wstrict-prototypes -Werror \ - -Wno-unused -Wno-parentheses -Wno-switch - -LINUXINCLUDE = -I$(PDPATH)/src - -.c.pd_linux: - cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c - ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm - strip --strip-unneeded $*.pd_linux - rm $*.o - -# ----------------------- Mac OSX ----------------------- - -pd_darwin: destroysend.pd_darwin - -.SUFFIXES: .pd_darwin - -DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ - -Wno-unused -Wno-parentheses -Wno-switch - -.c.pd_darwin: - cc $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c - cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o - rm -f $*.o - -- cgit v1.2.1