diff options
author | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2007-09-10 22:25:41 +0000 |
---|---|---|
committer | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2007-09-10 22:25:41 +0000 |
commit | 31f625c4e5eaf443872eece61b9a7156121669d9 (patch) | |
tree | c35dc757a113af4cb6ce87577a1bae6026ef2430 /folderpanel/makefile |
This commit was generated by cvs2svn to compensate for changes in r8719,svn2git-root
which included commits to RCS files with non-trunk default branches.
svn path=/trunk/externals/tof/; revision=8720
Diffstat (limited to 'folderpanel/makefile')
-rwxr-xr-x | folderpanel/makefile | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/folderpanel/makefile b/folderpanel/makefile new file mode 100755 index 0000000..bab0766 --- /dev/null +++ b/folderpanel/makefile @@ -0,0 +1,60 @@ +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
+
|