mini/Makefile
author Florian Pose <fp@igh-essen.com>
Tue, 21 Mar 2006 15:45:11 +0000
changeset 123 4d5dc58d48e2
parent 103 d2a8adde27c4
child 147 a355b587b4bc
permissions -rw-r--r--
Weitere EEPROM-Daten.
#----------------------------------------------------------------
#
#  Makefile
#
#  Minimales EtherCAT-Modul
#
#  $Id$
#
#----------------------------------------------------------------

ifneq ($(KERNELRELEASE),)

#----------------------------------------------------------------
#  Kbuild-Abschnitt
#----------------------------------------------------------------

obj-m := ec_mini.o

ec_mini-objs := mini.o

#----------------------------------------------------------------

else

#----------------------------------------------------------------
#  Default-Abschnitt
#----------------------------------------------------------------

ifneq ($(wildcard ethercat.conf),)
include ethercat.conf
else
KERNELDIR = /usr/src/linux
endif

modules:
	$(MAKE) -C $(KERNELDIR) M=`pwd` modules

clean:
	$(MAKE) -C $(KERNELDIR) M=`pwd` clean

#----------------------------------------------------------------

endif