TARGET  := n10ts
#WARN    := -W -Wall -Wstrict-prototypes -Wmissing-prototypes
INCLUDE := -isystem /lib/modules/`uname -r`/build/include
CFLAGS  := -O2 -DMODULE -D__KERNEL__ ${WARN} ${INCLUDE}
CC      := gcc-3.3

${TARGET}.o: ${TARGET}.c

.PHONY: clean

test:
	gcc -o test test.c -lm

testbl:
	gcc -o testbl testbl.c

clean:
	rm -rf ${TARGET}.o
	rm -rf test
