SRCS	= *.c

TARGETS	= 3c59x.o

KCC	= gcc -D__KERNEL__ -I./linux/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -D__SMP__ -pipe -fno-strength-reduce -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2 -DCPU=686 -DMODULE -DMODVERSIONS -include ./linux/include/linux/modversions.h   -c 

CC	= gcc -O2

all: $(TARGETS)
clean:
	$(RM) $(TARGETS)

3c59x.o: 3c59x.c
	$(KCC) -o $@ $< 


depend:
	makedepend -I. $(SRCS)

# DO NOT DELETE THIS LINE -- make depend depends on it.
