Return to Makefile CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / miniupnpd / ipfw |
1.8
1: # $Id: Makefile,v 1.1.1.2 2013/07/22 00:32:35 misho 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 ipfwaux.o 12: $(CC) -o $@ $^ 13: 14: ipfwrdr.o: ipfwrdr.c ipfwaux.c 15: 16: testipfwrdr.o: testipfwrdr.c 17: