
KERNELDIR=/home/sven/devel/kernel/linux-2.4.34.6
# KERNELDIR=/home/sven/devel/kernel/linux-2.4.35

include $(KERNELDIR)/.config

CFLAGS = -D__KERNEL__ -DMODULE -I$(KERNELDIR)/include -O -Wall

ifdef CONFIG_SMP
	CFLAGS += -D__SMP__ -DSMP
endif

all: hso.o

clean:
	rm -f *.o *~ core


