aboutsummaryrefslogtreecommitdiff
path: root/folderpanel/makefile
diff options
context:
space:
mode:
authorThomas O Fredericks <mrtof@users.sourceforge.net>2007-10-04 16:31:59 +0000
committerThomas O Fredericks <mrtof@users.sourceforge.net>2007-10-04 16:31:59 +0000
commit906c8c819e6089dcdde1925e82bdb88a10c3a5b1 (patch)
treef4a8151b78227f0097e9d8539bf72121a726523b /folderpanel/makefile
parentfa044426f92f90d2423cd3294d145a8168d20030 (diff)
deleted extra directories
svn path=/trunk/externals/tof/; revision=8785
Diffstat (limited to 'folderpanel/makefile')
-rwxr-xr-xfolderpanel/makefile60
1 files changed, 0 insertions, 60 deletions
diff --git a/folderpanel/makefile b/folderpanel/makefile
deleted file mode 100755
index bab0766..0000000
--- a/folderpanel/makefile
+++ /dev/null
@@ -1,60 +0,0 @@
-current:
- echo make pd_linux, pd_win, or pd_darwin
-
-clean: ; rm -f *.pd_linux *.o
-
-# ----------------------- WINDOWS -----------------------
-
-pd_win: folderpanel.dll
-
-.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
-
-WINPDPATH = /home/tom/pd0.4
-
-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: folderpanel.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: folderpanel.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
-