98c504f8b9
- Move IPFW implementation to a source file. Static in headers is not good.
18 lines
267 B
Makefile
18 lines
267 B
Makefile
# $Id: Makefile,v 1.2 2009/08/20 09:31:10 nanard Exp $
|
|
CC=gcc
|
|
CFLAGS=-Wall -g -I.
|
|
RM=rm -f
|
|
|
|
all: testipfwrdr
|
|
|
|
clean:
|
|
$(RM) *.o testipfwrdr
|
|
|
|
testipfwrdr: testipfwrdr.o ipfwrdr.o ipfwaux.o
|
|
$(CC) -o $@ $^
|
|
|
|
ipfwrdr.o: ipfwrdr.c ipfwaux.c
|
|
|
|
testipfwrdr.o: testipfwrdr.c
|
|
|