Annotation of embedaddon/miniupnpd/ipfw/Makefile, revision 1.1.1.1

1.1       misho       1: # $Id: Makefile,v 1.2 2009/08/20 09:31:10 nanard Exp $
                      2: CC=gcc
                      3: CFLAGS=-Wall -g -I.
                      4: RM=rm -f
                      5: 
                      6: all:   testipfwrdr
                      7: 
                      8: clean:
                      9:        $(RM) *.o testipfwrdr
                     10: 
                     11: testipfwrdr:   testipfwrdr.o ipfwrdr.o
                     12:        $(CC) -o $@ $^
                     13: 
                     14: ipfwrdr.o:     ipfwrdr.c
                     15: 
                     16: testipfwrdr.o: testipfwrdr.c
                     17: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>