vpn: cleanup of the code
[oweals/gnunet.git] / src / vpn / Makefile
1 CFLAGS=-Wall -pedantic --std=c99 -g
2 CXXFLAGS = ${CFLAGS}
3
4 LDFLAGS =
5
6 .PHONY: .dependencies
7
8 all: default
9
10 default: .dependencies test
11
12 test: test.o tun.o packet.o debug.o pretty-print.o tcp.o
13
14 .dependencies:
15         echo > .dependencies
16         gcc -M *.c >> .dependencies
17
18 -include .dependencies
19
20 clean:
21         rm -f *.o
22         rm -f test