From b439984641edaf4e781dc424d4c8a574461d3540 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Mon, 20 Jul 2020 16:27:43 +0200 Subject: 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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e5942dc..bec0d11 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ CFLAGS += -Wall -Wextra -pedantic all: merd qrap -merd: merd.c merd.h - $(CC) $(CFLAGS) merd.c -o merd +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 -- cgit v1.2.3