drivers/Makefile
changeset 16 f04e93b8af0f
parent 13 db0742533c10
child 22 e8c2cd004e0b
--- a/drivers/Makefile	Fri Nov 11 13:52:12 2005 +0000
+++ b/drivers/Makefile	Fri Nov 18 09:35:04 2005 +0000
@@ -8,18 +8,20 @@
 #
 #----------------------------------------------------------------
 
-KERNEL_DIRS_FILE = ../kerneldirs.mk
+CONFIG_FILE = ../ethercat.conf
 
-ifeq ($(KERNEL_DIRS_FILE),$(wildcard $(KERNEL_DIRS_FILE)))
-include $(KERNEL_DIRS_FILE)
+ifeq ($(CONFIG_FILE),$(wildcard $(CONFIG_FILE)))
+include $(CONFIG_FILE)
 else
 KERNELDIR = /vol/projekte/msr_messen_steuern_regeln/linux/kernel/2.4.20/include/linux-2.4.20.CX1100-rthal5
 RTAIDIR   = /vol/projekte/msr_messen_steuern_regeln/linux/kernel/2.4.20/include/rtai-24.1.13
-RTLIBDIR = rt_lib
+RTLIBDIR  = rt_lib
+GCC_SYSTEMDIR = /usr/lib/gcc-lib/i486-suse-linux/3.3/include
 endif
 
 CFLAGS = -O2 -Wall -Wuninitialized -D__KERNEL__ \
-	-DMODULE -I$(KERNELDIR)/include
+	-DMODULE -I$(KERNELDIR)/include -nostdinc \
+	-isystem $(GCC_SYSTEMDIR)
 
 ifdef CONFIG_SMP
 	CFLAGS += -D__SMP__ -DSMP