From f00c2cba30cf3151674bf2b73dab98660009f2c5 Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Tue, 21 Sep 2010 15:40:20 +0000 Subject: - implemented |dssi remap( message. This remaps MIDI channel numbers to instances. e.g. |dssi remap 1 1 2( maps channel 1 to instances 1 & 2, and channel 2 to instance 3. svn path=/trunk/externals/postlude/; revision=14166 --- dssi/makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dssi/makefile') diff --git a/dssi/makefile b/dssi/makefile index 96511e6..6a87da9 100755 --- a/dssi/makefile +++ b/dssi/makefile @@ -4,6 +4,7 @@ CSYM=dssi~ LIBDIR=/usr/local/lib PDDIR=$(LIBDIR)/pd INSTALLPATH=$(PDDIR)/extra/ +ARCHITECTURE=i386 DEBUG=0 current: pd_linux @@ -41,7 +42,7 @@ pd_darwin: src/$(NAME).pd_darwin .SUFFIXES: .pd_darwin -DARWINCFLAGS = -DPD -O3 -Wall -W -Wshadow -Wstrict-prototypes \ +DARWINCFLAGS = -DPD -arch $(ARCHITECTURE) -O3 -Wall -W -Wshadow -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch -L/usr/local/lib/ -DDEBUG=$(DEBUG) DARWININCLUDE = -I ./ -I ../src -I/usr/local/include/ -I ./include -I/usr/local/include/dssi/ @@ -50,7 +51,7 @@ DARWININCLUDE = -I ./ -I ../src -I/usr/local/include/ -I ./include -I/usr/local/ $(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 + $(CC) -arch $(ARCHITECTURE) -bundle -undefined suppress -flat_namespace -llo -o $(NAME).pd_darwin dssi~.o jload.o jsearch.o rm -f *.o # ----------------------- Generic ----------------------- -- cgit v1.2.1