version 1.1.1.1, 2012/02/21 23:16:02
|
version 1.1.1.2, 2012/05/29 12:55:57
|
Line 1
|
Line 1
|
# $Id$ |
# $Id$ |
# made for GNU Make |
# made for GNU Make |
CFLAGS = -Wall -g |
CFLAGS = -Wall -g |
EXECUTABLES = testgetifstats | EXECUTABLES = testgetifstats testifacewatcher |
|
|
all: $(EXECUTABLES) |
all: $(EXECUTABLES) |
|
|
Line 10 clean:
|
Line 10 clean:
|
|
|
testobsdrdr.o: testobsdrdr.c obsdrdr.h |
testobsdrdr.o: testobsdrdr.c obsdrdr.h |
|
|
testgetifstats: testgetifstats.o getifstats.o -lkvm | testgetifstats: testgetifstats.o getifstats.o |
| $(CC) $(CFLAGS) -o $@ $> -lkvm |
| |
| testifacewatcher: testifacewatcher.o ifacewatcher.o upnputils.o |
| $(CC) $(CFLAGS) -o $@ $> |
| |
| upnputils.o: ../upnputils.c |
|
|