mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 08:02:17 +00:00
bc805a03c2
ed16648eb5
"Move kvm, uml, and lguest
subdirectories" broke the lguest example launcher.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
9 lines
269 B
Makefile
9 lines
269 B
Makefile
# This creates the demonstration utility "lguest" which runs a Linux guest.
|
|
# Missing headers? Add "-I../../../include -I../../../arch/x86/include"
|
|
CFLAGS:=-m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -U_FORTIFY_SOURCE
|
|
|
|
all: lguest
|
|
|
|
clean:
|
|
rm -f lguest
|