swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 4a6908a3a050aacc9c3a2f36b276b46c0629ad91 authored by Linus Torvalds on 24 December 2008, 23:26:37 UTC
Linux 2.6.28
Tip revision: 4a6908a
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
back to top