diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-05-19 00:00:45 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-05-19 00:00:45 +0000 |
commit | 70a17cba37ee1b2ad64beb3dc9900745ff88b307 (patch) | |
tree | 0dab35379c5c48f5f8b2c2af5bfb0adbe3a140f8 /netsend~/makefile | |
parent | fcf5649dc140d8ea7b986dd9dc0cdc0c6b8b89fc (diff) |
minor clean up to make it easier to build
svn path=/trunk/externals/olafmatt/; revision=11440
Diffstat (limited to 'netsend~/makefile')
-rwxr-xr-x | netsend~/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/netsend~/makefile b/netsend~/makefile index 0f62407..c587c1f 100755 --- a/netsend~/makefile +++ b/netsend~/makefile @@ -1,7 +1,7 @@ current: echo make pd_linux, pd_nt, pd_irix, pd_darwin -clean: ; rm -f *.pd_linux *.o +clean: ; rm -f *.pd_linux *.dll *.pd_darwin *.o # ----------------------- NT ----------------------- @@ -60,11 +60,11 @@ DARWINCFLAGS = -DPD -DUNIX -DMACOSX -O2 \ -Wall -W \ -Wno-unused -Wno-parentheses -Wno-switch -DARWININCLUDE = -I../../src -Iinclude +DARWININCLUDE = -I../../../pd/src .c.pd_darwin: cc $(DARWINCFLAGS) $(DARWININCLUDE) -o $*.o -c $*.c - cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o + cc -bundle -undefined suppress -o $*.pd_darwin $*.o rm -f $*.o ../$*.pd_darwin ln -s $*/$*.pd_darwin .. @@ -79,7 +79,7 @@ LINUXCFLAGS = -DPD -DUNIX -DHAVE_LRINT -DHAVE_LRINTF -O2 \ -Wall -W -Wshadow -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch -LINUXINCLUDE = -I../../src +LINUXINCLUDE = -I../../../pd/src .c.pd_linux: cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c |