diff options
Diffstat (limited to 'tools/lguest/Makefile')
-rw-r--r-- | tools/lguest/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/lguest/Makefile b/tools/lguest/Makefile new file mode 100644 index 000000000000..0ac34206f7a7 --- /dev/null +++ b/tools/lguest/Makefile @@ -0,0 +1,8 @@ +# 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 |