18 lines
247 B
Makefile
18 lines
247 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
|
||
|
$(CC) -o $@ $^
|
||
|
|
||
|
ipfwrdr.o: ipfwrdr.c
|
||
|
|
||
|
testipfwrdr.o: testipfwrdr.c
|
||
|
|