https://github.com/raspberrypi/linux
Raw File
Tip revision: 47ee7516cc3af54154e7ce4033a11dba55bb1272 authored by popcornmix on 07 June 2015, 18:57:05 UTC
Merge pull request #1011 from notro/sweeping
Tip revision: 47ee751
Makefile
# 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
back to top