fa2d20908d
We can bypass a full-fledged network interface between qemu and merd by connecting the qemu tap file descriptor to a provided UNIX domain socket: this could be implemented in qemu eventually, qrap covers this meanwhile. This also avoids the need for the AF_PACKET socket towards the guest. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
13 lines
196 B
Makefile
13 lines
196 B
Makefile
CFLAGS += -Wall -Wextra -pedantic
|
|
|
|
all: merd qrap
|
|
|
|
merd: merd.c merd.h
|
|
$(CC) $(CFLAGS) merd.c -o merd
|
|
|
|
qrap: qrap.c merd.h
|
|
$(CC) $(CFLAGS) qrap.o -o qrap
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-${RM} merd qrap
|