1topdir=$(shell pwd)/.. 2include ../Make.Rules 3 4test: exit 5 rm -f interactive 6 ./test-kernel.sh 7 8shell: exit 9 touch interactive 10 ./test-kernel.sh 11 12exit: exit.c 13 $(CC) -O2 $< -o $@ --static 14 15all: 16 @echo cd to kdebug to test a kernel build 17 18install: 19 20clean: 21 $(LOCALCLEAN) 22 rm -f fs.conf initramfs.img exit interactive 23