1# $Id: Makefile,v 1.1 2007/09/25 19:44:43 nanard Exp $
2CC=gcc
3CFLAGS=-Wall -g -I.
4
5all:	testipfrdr
6
7clean:
8	rm *.o testipfrdr
9
10testipfrdr:	testipfrdr.o ipfrdr.o
11	$(CC) -o $@ $^
12
13ipfrdr.o:	ipfrdr.c
14
15testipfrdr.o:	testipfrdr.c
16
17