
all: test.o testusr

test.o: test.c
	cc -O -DMODULE -D__KERNEL__ -c test.c

testusr: testusr.c
	cc -O -o testusr testusr.c
