diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2003-06-18 13:55:45 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2003-06-18 13:55:45 +0000 |
commit | ae98aa5052110ad7de12f5f1c0ef6a3aab1a1ba4 (patch) | |
tree | d01b12087dbc2e0710c376d91f7d7a2e6a05f5d5 /src | |
parent | bcfa48b87b7656834e1b6f02e174a395f84613a5 (diff) |
removed the "down~" object
svn path=/trunk/externals/zexy/; revision=709
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile.darwin | 2 | ||||
-rw-r--r-- | src/makefile.linux | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/src/makefile.darwin b/src/makefile.darwin index 797d87b..04c41dd 100644 --- a/src/makefile.darwin +++ b/src/makefile.darwin @@ -36,7 +36,7 @@ TARGETS = zexy \ z_dfreq z_sigzero z_pdf \
z_sfplay z_sfrecord \
z_sigpack \
- z_down z_prime z_random
+ z_prime z_random
# ----------------------- MACOSX ----------------------------
.SUFFIXES: .pd_darwin
diff --git a/src/makefile.linux b/src/makefile.linux index 62e39bc..37d0938 100644 --- a/src/makefile.linux +++ b/src/makefile.linux @@ -5,7 +5,7 @@ current: all # everything is GnuGPL that should come with the zexy.tgz # NO WARRANTIES FOR ANYTHING # et cetera -# 1999:forum::für::umläute:2001 +# 1999:forum::für::umläute:2003 # make sure that the "m_pd.h" is somehow available either by putting it into this # directory, by adding it's path to the INCLUDE-path or by putting it into an @@ -36,7 +36,7 @@ TARGETS = zexy \ z_dfreq z_sigzero z_pdf \ z_sfplay z_sfrecord \ z_sigpack \ - z_down z_prime z_random z_wrap + z_prime z_random z_wrap # ----------------------- LINUX ---------------------------- .SUFFIXES: .pd_linux @@ -55,7 +55,9 @@ LINCLUDE = $(LINUXOBJECTS): *.h -CFLAGS = -O2 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS) +#CFLAGS = -O2 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS) +CFLAGS = -O3 -march=pentium3 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS) + everything: clean all install distclean @@ -83,8 +85,8 @@ all: $(LINUXOBJECTS) install: installdocs - install -d $(PD_DIR)/externs - install -m 644 zexy.pd_linux $(PD_DIR)/externs + install -d $(PD_DIR)/extra + install -m 644 zexy.pd_linux $(PD_DIR)/extra installdocs: install -d $(PD_DIR)/doc/5.reference/zexy |