aboutgitcodebugslistschat
path: root/Makefile
blob: 501830dcd7f94a41c18d9bbbf0b2d82c7e344d06 (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 util.c util.h
	$(CC) $(CFLAGS) passt.c arp.c dhcp.c util.c -o passt

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

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