mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-13 14:50:51 -04:00
9 lines
226 B
Makefile
9 lines
226 B
Makefile
# This creates the demonstration utility "lguest" which runs a Linux guest.
|
|
CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include -I../../arch/x86/include
|
|
LDLIBS:=-lz
|
|
|
|
all: lguest
|
|
|
|
clean:
|
|
rm -f lguest
|