2
0
mirror of https://github.com/status-im/miniupnp.git synced 2025-01-10 06:06:03 +00:00
2011-09-28 21:13:20 +02:00

17 lines
226 B
Makefile

# $Id: Makefile,v 1.1 2007/09/25 19:44:43 nanard Exp $
CC=gcc
CFLAGS=-Wall -g -I.
all: testipfrdr
clean:
rm *.o testipfrdr
testipfrdr: testipfrdr.o ipfrdr.o
$(CC) -o $@ $^
ipfrdr.o: ipfrdr.c
testipfrdr.o: testipfrdr.c