aboutsummaryrefslogtreecommitdiff
path: root/iem_t3_lib/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 /iem_t3_lib/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 'iem_t3_lib/src')
-rw-r--r--iem_t3_lib/src/makefile_linux3
1 files changed, 2 insertions, 1 deletions
diff --git a/iem_t3_lib/src/makefile_linux b/iem_t3_lib/src/makefile_linux
index 3705f69..89d69e3 100644
--- a/iem_t3_lib/src/makefile_linux
+++ b/iem_t3_lib/src/makefile_linux
@@ -35,13 +35,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