mini/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 17 Mar 2006 14:21:35 +0000
changeset 104 052bc82d5442
parent 103 d2a8adde27c4
child 147 a355b587b4bc
permissions -rw-r--r--
MERGE branches/async -> trunk (alle Unterschiede ?bernommen)
#----------------------------------------------------------------
#
#  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