mirror of
https://github.com/status-im/miniupnp.git
synced 2025-01-09 21:55:57 +00:00
15 lines
262 B
Makefile
15 lines
262 B
Makefile
# $Id: Makefile,v 1.2 2011/02/20 23:43:41 nanard Exp $
|
|
# made for GNU Make
|
|
CFLAGS = -Wall -g
|
|
EXECUTABLES = testgetifstats
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
clean:
|
|
rm -f *.o $(EXECUTABLES)
|
|
|
|
testmacrdr.o: testmacrdr.c macrdr.h
|
|
|
|
testgetifstats: testgetifstats.o getifstats.o
|
|
|