1
0
mirror of https://passt.top/passt synced 2024-07-03 00:12:41 +00:00
passt/Makefile
Stefano Brivio b439984641 merd: ARP and DHCP handlers, connection tracking fixes
With this, merd provides a fully functional IPv4 environment to
guests, requiring a single capability, CAP_NET_RAW.

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2021-02-16 07:57:57 +01:00

14 lines
256 B
Makefile

CFLAGS += -Wall -Wextra -pedantic
all: merd qrap
merd: merd.c merd.h arp.c arp.h dhcp.c dhcp.h util.c util.h
$(CC) $(CFLAGS) merd.c arp.c dhcp.c util.c -o merd
qrap: qrap.c merd.h
$(CC) $(CFLAGS) qrap.o -o qrap
.PHONY: clean
clean:
-${RM} merd qrap