diff options
author | musil <tmusil@users.sourceforge.net> | 2006-11-30 10:50:50 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2006-11-30 10:50:50 +0000 |
commit | f08611d5ab9d3c3d3594c2360558977ae09f7bd6 (patch) | |
tree | 160c6a73d275d05dacaac601360df41d1c0ff5d3 /src/makefile | |
parent | f2f2226292040ce350d5e66ba22c1bc29e6bba2c (diff) |
change target in makefile
svn path=/trunk/externals/iem/iem_ambi/; revision=6538
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile index d250fe9..da6bd46 100644 --- a/src/makefile +++ b/src/makefile @@ -35,13 +35,14 @@ 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) + mv $(TARGET) .. $(OBJ) : %.o : %.c $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c |