Annotation of embedaddon/miniupnpd/bsd/Makefile, revision 1.1.1.2
1.1.1.2 ! misho 1: # $Id: Makefile,v 1.2 2011/05/20 09:34:25 nanard Exp $
1.1 misho 2: # made for GNU Make
3: CFLAGS = -Wall -g
1.1.1.2 ! misho 4: EXECUTABLES = testgetifstats testifacewatcher
1.1 misho 5:
6: all: $(EXECUTABLES)
7:
8: clean:
9: rm -f *.o $(EXECUTABLES)
10:
11: testobsdrdr.o: testobsdrdr.c obsdrdr.h
12:
1.1.1.2 ! misho 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
1.1 misho 20:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>