CC=gcc
VERSIONINF=$(shell uname -r)
KERNEL_SRC=/usr/src/linux-2.4.19-0.004sparc

CFLAGS := -D__KERNEL__ \
	-I$(KERNEL_SRC)/include \
	-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing \
	-fno-common -fomit-frame-pointer -fomit-frame-pointer -m64 -pipe \
	-mno-fpu -mcpu=ultrasparc -mcmodel=medlow -ffixed-g4 -fcall-used-g5 \
	-fcall-used-g7 -Wno-sign-compare -Wa,--undeclared-regs -DMODULE \
	-DMODVERSIONS \
	-include $(KERNEL_SRC)/include/linux/modversions.h



clean:
	rm *.o
