1: # $Id: Makefile,v 1.1.1.2 2012/05/29 12:55:57 misho Exp $
2: # made for GNU Make
3: CFLAGS = -Wall -g
4: EXECUTABLES = testgetifstats testifacewatcher
5:
6: all: $(EXECUTABLES)
7:
8: clean:
9: rm -f *.o $(EXECUTABLES)
10:
11: testobsdrdr.o: testobsdrdr.c obsdrdr.h
12:
13: testgetifstats: testgetifstats.o getifstats.o
14: $(CC) $(CFLAGS) -o $@ $> -lkvm
15:
16: testifacewatcher: testifacewatcher.o ifacewatcher.o upnputils.o
17: $(CC) $(CFLAGS) -o $@ $>
18:
19: upnputils.o: ../upnputils.c
20:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>