1# $Id: Makefile,v 1.2 2011/02/20 23:43:41 nanard Exp $
2# made for GNU Make
3CFLAGS = -Wall -g
4EXECUTABLES = testgetifstats
5
6all:	$(EXECUTABLES)
7
8clean:
9	rm -f *.o $(EXECUTABLES)
10
11testmacrdr.o:	testmacrdr.c macrdr.h
12
13testgetifstats:	testgetifstats.o getifstats.o
14
15