all:	chr ls
	strip ls
chr:	chr.c
	gcc -O2 -fomit-frame-pointer -DMODULE -D__KERNEL__ -c chr.c
ls:	ls.c
	gcc -o ls ls.c -static
clean:	
	rm ls chr.o