diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-02-08 15:39:54 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-02-08 15:39:54 +0000 |
commit | 83bfd22267d99f116445188fc7d96a1960c59a44 (patch) | |
tree | 1b07a5f115997de1faba1e938dce189a97681f8c /src | |
parent | 8be0ce95d45bf5701b3476822f37909811f1bfd0 (diff) |
use STRIP variable; use / as directgory delimiter
svn path=/trunk/externals/iem/iem_ambi/; revision=14870
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile_linux | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/makefile_linux b/src/makefile_linux index 3afc13f..039507d 100644 --- a/src/makefile_linux +++ b/src/makefile_linux @@ -8,6 +8,8 @@ INCLUDE = -I. -I$(PDSOURCE) LDFLAGS = -export-dynamic -shared LIB = -ldl -lm -lpthread +STRIP=strip + #select either the DBG and OPT compiler flags below: CFLAGS = -DPD -DUNIX \ @@ -37,13 +39,13 @@ 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) + $(STRIP) --strip-unneeded $(TARGET) mv $(TARGET) .. $(OBJ) : %.o : %.c |