libec/Makefile
changeset 59 c8bd4fe3b38c
parent 58 21b7342e2a90
child 60 2d2b120ba734
--- a/libec/Makefile	Thu Jan 26 09:12:09 2006 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,41 +0,0 @@
-#------------------------------------------------------------------------------
-#
-#  Makefile
-#
-#  EtherCAT-Library
-#
-#  $Id$
-#
-#------------------------------------------------------------------------------
-
-ifneq ($(KERNELRELEASE),)
-
-#------------------------------------------------------------------------------
-# Kbuild-Abschnitt
-
-lib-m := libec.o
-
-#------------------------------------------------------------------------------
-
-else
-
-#------------------------------------------------------------------------------
-# Default-Abschnitt
-
-ifneq ($(wildcard ethercat.conf),)
-include ethercat.conf
-else
-KERNELDIR = /lib/modules/`uname -r`/build
-endif
-
-modules:
-	$(MAKE) -C $(KERNELDIR) M=`pwd`
-
-clean:
-	$(MAKE) -C $(KERNELDIR) M=`pwd` clean
-
-#------------------------------------------------------------------------------
-
-endif
-
-