mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-22 01:43:37 -04:00
8 lines
226 B
Makefile
8 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
|