jakkarth / icmptx

IP-over-ICMP tunnel

This URL has Read+Write access

icmptx / Makefile
100644 16 lines (10 sloc) 0.27 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
flags=-g3 -Wall -ansi -pedantic -D_GNU_SOURCE
 
all: icmptx
 
icmptx: it.o icmptx.c tun_dev.o
gcc $(flags) -o icmptx icmptx.c it.o tun_dev.o
 
it.o: it.c tun_dev.h
gcc $(flags) -c it.c
 
tun_dev.o: tun_dev.c
gcc $(flags) -c tun_dev.c
 
clean:
rm -f tun_dev.o it.o icmptx