From d48d5b9e9e6c2f8e1fd78327a0fdc739d785e2ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 10 Mar 2006 12:17:20 +0000 Subject: removed "touch" of each c-file; replaced cc and ld by $(CC) and $(LD) svn path=/trunk/externals/iem/iem_ambi/; revision=4685 --- src/makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/makefile b/src/makefile index d2a09df..37557e9 100644 --- a/src/makefile +++ b/src/makefile @@ -40,12 +40,11 @@ clean: all: $(OBJ) @echo :: $(OBJ) - ld $(LDFLAGS) -o $(TARGET) *.o $(LIB) + $(LD) $(LDFLAGS) -o $(TARGET) *.o $(LIB) strip --strip-unneeded $(TARGET) $(OBJ) : %.o : %.c - touch $*.c - cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c + $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c -- cgit v1.2.1