KERNELDIR = /usr/src/linux
WARN := -Wall
CFLAGS := -D__KERNEL__ -DMODULE -I${KERNELDIR}/include ${WARN} \
	-Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fomit-frame-pointer \
	-pipe -mpreferred-stack-boundary=2 -march=i686 -nostdinc -iwithprefix include
CC := gcc

all: testNull.o

clean :
	rm -f *.o *~ core
