]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - tools/lguest/Makefile
UBUNTU: [Config] CONFIG_PCIEPORTBUS=n for ppc64el
[mirror_ubuntu-zesty-kernel.git] / tools / lguest / Makefile
1 # This creates the demonstration utility "lguest" which runs a Linux guest.
2 CFLAGS:=-m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -U_FORTIFY_SOURCE -Iinclude
3
4 all: lguest
5
6 include/linux/virtio_types.h: ../../include/uapi/linux/virtio_types.h
7 mkdir -p include/linux 2>&1 || true
8 ln -sf ../../../../include/uapi/linux/virtio_types.h $@
9
10 lguest: include/linux/virtio_types.h
11
12 clean:
13 rm -f lguest
14 rm -rf include