diff options
author | Jamie Bullock <postlude@users.sourceforge.net> | 2006-03-27 09:43:22 +0000 |
---|---|---|
committer | Jamie Bullock <postlude@users.sourceforge.net> | 2006-03-27 09:43:22 +0000 |
commit | 4911794956d32f56a606e2f4953b7d704259db5d (patch) | |
tree | 5ca9a7912eba9e308042773db3363ba3c325c2cd /dssi/makefile | |
parent | e0b75af5f9837ce10491509cbd758e55f03dd06f (diff) |
Added jutils to makefile
svn path=/trunk/externals/postlude/; revision=4781
Diffstat (limited to 'dssi/makefile')
-rwxr-xr-x | dssi/makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dssi/makefile b/dssi/makefile index 47726b9..b7c6a35 100755 --- a/dssi/makefile +++ b/dssi/makefile @@ -5,7 +5,7 @@ LIBDIR=/usr/local/lib PDDIR=$(LIBDIR)/pd INSTALLPATH=$(PDDIR)/extra/ -current: pd_linux +current: pd_darwin # ----------------------- Linux ----------------------- @@ -45,8 +45,10 @@ DARWINCFLAGS = -DPD -O3 -Wall -W -Wshadow -Wstrict-prototypes \ DARWININCLUDE = -I ./ -I ../src -I/usr/local/include/ -I ./include -I/usr/local/include/dssi/ .c.pd_darwin: - $(CC) $(DARWINCFLAGS) $(DARWININCLUDE) -o $(NAME).o -c $*.c - $(CC) -bundle -undefined suppress -flat_namespace -llo -o $(NAME).pd_darwin $(NAME).o + $(CC) $(DARWINCFLAGS) $(DARWININCLUDE) -c src/jsearch.c + $(CC) $(DARWINCFLAGS) $(DARWININCLUDE) -c src/jload.c + $(CC) $(DARWINCFLAGS) $(DARWININCLUDE) -c src/dssi~.c + $(CC) -bundle -undefined suppress -flat_namespace -llo -o $(NAME).pd_darwin dssi~.o jload.o jsearch.o rm -f *.o # ----------------------- Generic ----------------------- |