diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-06-06 11:38:25 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-06-06 11:38:25 +0000 |
commit | 00f76296a49d9f3ad22df42e0b4621acc1159fe5 (patch) | |
tree | 05107f111692f2aecdf2dba368fa59d496ca10ea /src/iem_t3_lib | |
parent | 6c87994a6c91d7a578dc329f3dd5484aa34e0f0b (diff) |
removed the removal of *.o files after compilation (eases re-compilation)
svn path=/trunk/externals/iemlib/; revision=3118
Diffstat (limited to 'src/iem_t3_lib')
-rw-r--r-- | src/iem_t3_lib/makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/iem_t3_lib/makefile b/src/iem_t3_lib/makefile index 9a177a7..22aaaf9 100644 --- a/src/iem_t3_lib/makefile +++ b/src/iem_t3_lib/makefile @@ -35,8 +35,8 @@ OBJ = $(SRC:.c=.o) # clean: - rm ../../lib/$(TARGET) - rm *.o + -rm ../../lib/$(TARGET) $(TARGET) + -rm *.o all: $(OBJ) @@ -44,8 +44,7 @@ all: $(OBJ) ld $(LDFLAGS) -o $(TARGET) *.o $(LIB) strip --strip-unneeded $(TARGET) - mv $(TARGET) ../../lib - rm *.o + cp $(TARGET) ../../lib $(OBJ) : %.o : %.c touch $*.c |