diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2006-08-24 15:23:52 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2006-08-24 15:23:52 +0000 |
commit | fd6fc182230d0440fc698e118514dd635c533fc8 (patch) | |
tree | b386f5905c2b6ef7c83ab0e832ebee149e3b1b0e /pd/extra/makefile | |
parent | bbbc57756c00f26cdfacf42d53d0a7f844a4c3ef (diff) |
sync for pd 0.40-0test05. Bug fix (empty DSP chains crashed Pd).
svn path=/trunk/; revision=5730
Diffstat (limited to 'pd/extra/makefile')
-rw-r--r-- | pd/extra/makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pd/extra/makefile b/pd/extra/makefile index eb5cb403..c2f573a0 100644 --- a/pd/extra/makefile +++ b/pd/extra/makefile @@ -85,8 +85,9 @@ DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ rm -f $*.o .c.d_fat: - $(CC) $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c - $(CC) -bundle -undefined suppress -flat_namespace -o $*.pd_imac $*.o + $(CC) -arch i386 -arch ppc $(DARWINCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + $(CC) -arch i386 -arch ppc -bundle -undefined suppress -flat_namespace \ + -o $*.d_fat $*.o rm -f $*.o # ---------------------------------------------------------- |