aboutsummaryrefslogtreecommitdiff
path: root/iemlib1/src
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2006-12-09 02:36:07 +0000
committermusil <tmusil@users.sourceforge.net>2006-12-09 02:36:07 +0000
commit44e3e2d0e046f00f0366e376209f482dfc8018cf (patch)
treeeb517d9ed86ca376a8e56ad64a1a506f4cb48aaa /iemlib1/src
parentd6b088044e161a27d49df537bbb6d998a8d0e50d (diff)
changed makefile
changed README.txt changed help-*.pd to *-help.pd chanded file structure to standard 2nd step new abs and help svn path=/trunk/externals/iemlib/; revision=6757
Diffstat (limited to 'iemlib1/src')
-rw-r--r--iemlib1/src/makefile_linux5
1 files changed, 3 insertions, 2 deletions
diff --git a/iemlib1/src/makefile_linux b/iemlib1/src/makefile_linux
index bc0d68f..7f3881f 100644
--- a/iemlib1/src/makefile_linux
+++ b/iemlib1/src/makefile_linux
@@ -22,7 +22,7 @@ SRC = biquad_freq_resp.c \
f2note.c \
filter~.c \
FIR~.c \
- forpp.c \
+ for++.c \
gate.c \
hml_shelf~.c \
iem_cot4~.c \
@@ -53,13 +53,14 @@ OBJ = $(SRC:.c=.o)
#
clean:
- rm $(TARGET)
+ rm ../$(TARGET)
rm *.o
all: $(OBJ)
@echo :: $(OBJ)
$(LD) $(LDFLAGS) -o $(TARGET) *.o $(LIB)
strip --strip-unneeded $(TARGET)
+ mv $(TARGET) ..
$(OBJ) : %.o : %.c
$(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c