summaryrefslogtreecommitdiffstats
path: root/ipv6connect/Makefile
blob: 2a0445e8a3970b8d27deb8f234f9116a8ab2abce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -O2 -Wall
TARGET = ipv6connect


all: $(TARGET)


$(TARGET): ipv6connect.c
	$(CC) $(CFLAGS) $^ -o $@ -lpthread


clean:
	$(RM) $(TARGET)