b439984641
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>
13 lines
256 B
Makefile
13 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
|