From 00f76296a49d9f3ad22df42e0b4621acc1159fe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Mon, 6 Jun 2005 11:38:25 +0000 Subject: removed the removal of *.o files after compilation (eases re-compilation) svn path=/trunk/externals/iemlib/; revision=3118 --- src/iem_mp3/makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/iem_mp3/makefile') diff --git a/src/iem_mp3/makefile b/src/iem_mp3/makefile index 9994415..30fe266 100644 --- a/src/iem_mp3/makefile +++ b/src/iem_mp3/makefile @@ -30,8 +30,8 @@ OBJ = $(SRC:.c=.o) # clean: - rm ../../lib/$(TARGET) - rm *.o + -rm ../../lib/$(TARGET) $(TARGET) + -rm *.o all: $(OBJ) @@ -39,8 +39,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 -- cgit v1.2.1