Some more Makefile updates

This commit is contained in:
mpc
2004-08-09 09:39:20 +00:00
committed by zzz
parent 44af799b66
commit 2c2a103676
6 changed files with 52 additions and 52 deletions

View File

@ -1,5 +1,5 @@
#
# This Makefile is compatible with GNU Make
# This Makefile is compatible with GNU Make and should work on POSIX systems
#
#
@ -8,6 +8,7 @@
CC = gcc
INSTALL = install
RM = rm
#
# Flags
@ -21,7 +22,7 @@ LIBS = -lsam
# Build rules
#
all: i2p-ping
all: clean i2p-ping
i2p-ping: i2p-ping.c
$(CC) $(CFLAGS) -o i2p-ping.o -c i2p-ping.c
@ -35,4 +36,4 @@ install: i2p-ping
#
clean:
-rm -f *.o *.exe i2p-ping
-$(RM) -f i2p-ping *.o