1
0
mirror of https://passt.top/passt synced 2024-07-05 09:15:48 +00:00
passt/Makefile

14 lines
286 B
Makefile
Raw Normal View History

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