aboutgitcodebugslistschat
path: root/Makefile
blob: 257d89ee1634018f15429c2ae2c684c7f92d8bd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS += -Wall -Wextra -pedantic

all: passt qrap

passt: passt.c passt.h arp.c arp.h dhcp.c dhcp.h ndp.c ndp.h util.c util.h
	$(CC) $(CFLAGS) passt.c arp.c dhcp.c ndp.c util.c -o passt

qrap: qrap.c passt.h
	$(CC) $(CFLAGS) qrap.c -o qrap

.PHONY: clean
clean:
	-${RM} passt *.o qrap