mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-07-23 09:02:49 +00: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
|