aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnettrace-icmp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fnettrace-icmp')
-rw-r--r--src/fnettrace-icmp/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/fnettrace-icmp/Makefile b/src/fnettrace-icmp/Makefile
index 9d18bbdb3..2b8e7b078 100644
--- a/src/fnettrace-icmp/Makefile
+++ b/src/fnettrace-icmp/Makefile
@@ -4,19 +4,4 @@ ROOT = ../..
4PROG = fnettrace-icmp 4PROG = fnettrace-icmp
5TARGET = $(PROG) 5TARGET = $(PROG)
6 6
7.PHONY: all
8all: $(TARGET)
9
10include $(ROOT)/src/common.mk 7include $(ROOT)/src/common.mk
11
12%.o : %.c $(HDRS) $(ROOT)/config.mk
13 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
14
15$(PROG): $(OBJS) $(ROOT)/config.mk
16 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
17
18.PHONY: clean
19clean:; rm -fr *.o $(PROG) *.gcov *.gcda *.gcno *.plist
20
21.PHONY: distclean
22distclean: clean