You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
425 B
14 lines
425 B
# This creates the demonstration utility "lguest" which runs a Linux guest. |
|
CFLAGS:=-m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -U_FORTIFY_SOURCE -Iinclude |
|
|
|
all: lguest |
|
|
|
include/linux/virtio_types.h: ../../include/uapi/linux/virtio_types.h |
|
mkdir -p include/linux 2>&1 || true |
|
ln -sf ../../../../include/uapi/linux/virtio_types.h $@ |
|
|
|
lguest: include/linux/virtio_types.h |
|
|
|
clean: |
|
rm -f lguest |
|
rm -rf include
|
|
|