aboutsummaryrefslogtreecommitdiff
path: root/iemlib2/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 /iemlib2/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 'iemlib2/src')
-rw-r--r--iemlib2/src/makefile_linux3
1 files changed, 2 insertions, 1 deletions
diff --git a/iemlib2/src/makefile_linux b/iemlib2/src/makefile_linux
index ea9e468..0c6aef3 100644
--- a/iemlib2/src/makefile_linux
+++ b/iemlib2/src/makefile_linux
@@ -66,13 +66,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