diff options
author | Rob Landley <rlandley@parallels.com> | 2011-05-06 09:22:02 -0700 |
---|---|---|
committer | Randy Dunlap <randy.dunlap@oracle.com> | 2011-05-06 09:22:02 -0700 |
commit | ed16648eb5b86917f0b90bdcdbc857202da72f90 (patch) | |
tree | a8198415a6c2f1909f02340b05d36e1d53b82320 /Documentation/virtual/lguest/Makefile | |
parent | bfd412db9e7b0d8f7b9c09d12d07aa2ac785f1d0 (diff) | |
download | kernel_goldelico_gta04-ed16648eb5b86917f0b90bdcdbc857202da72f90.zip kernel_goldelico_gta04-ed16648eb5b86917f0b90bdcdbc857202da72f90.tar.gz kernel_goldelico_gta04-ed16648eb5b86917f0b90bdcdbc857202da72f90.tar.bz2 |
Move kvm, uml, and lguest subdirectories under a common "virtual" directory, I.E:
cd Documentation
mkdir virtual
git mv kvm uml lguest virtual
Signed-off-by: Rob Landley <rlandley@parallels.com>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Diffstat (limited to 'Documentation/virtual/lguest/Makefile')
-rw-r--r-- | Documentation/virtual/lguest/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/virtual/lguest/Makefile b/Documentation/virtual/lguest/Makefile new file mode 100644 index 0000000..bebac6b --- /dev/null +++ b/Documentation/virtual/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 |