diff options
author | musil <tmusil@users.sourceforge.net> | 2006-12-04 10:38:17 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2006-12-04 10:38:17 +0000 |
commit | 88c25d6b1484aab46576d4e42bd78e93dfd7163c (patch) | |
tree | fa2bc49e56b313dcc5b90c46bfa77ed111776287 /src/makefile | |
parent | 955c86ee3c273d8c2486927ba0319bbcd4eff4ce (diff) |
makefile mv $(TARGET) ..
svn path=/trunk/externals/iem/iem_tab/; revision=6608
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 cb8b982..0291159 100644 --- a/src/makefile +++ b/src/makefile @@ -68,13 +68,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 |