Makefile
author Florian Pose <fp@igh-essen.com>
Tue, 28 Mar 2006 15:45:19 +0000
changeset 136 a03a684cac89
parent 103 d2a8adde27c4
child 148 9b68b77572cc
permissions -rw-r--r--
Dynamische Mailbox-Kommunikation, auch mit unbekannten Slaves.
#------------------------------------------------------------------------------
#
#  Globales Makefile
#
#  IgH EtherCAT-Treiber
#
#  $Id$
#
#------------------------------------------------------------------------------

ifneq ($(KERNELRELEASE),)

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

obj-m := master/ devices/

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

else

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

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

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

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

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

endif