diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-03-10 12:17:20 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-03-10 12:17:20 +0000 |
commit | d48d5b9e9e6c2f8e1fd78327a0fdc739d785e2ec (patch) | |
tree | 4a63a4e9475d153d10d2fdbddfc229b097fb6443 /src | |
parent | b9d2c477f5e77c21d77a35c995603235db6c265c (diff) |
removed "touch" of each c-file;
replaced cc and ld by $(CC) and $(LD)
svn path=/trunk/externals/iem/iem_ambi/; revision=4685
Diffstat (limited to 'src')
-rw-r--r-- | src/makefile | 5 |
1 files 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 |