devices/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 20 Mar 2006 15:28:25 +0000
changeset 114 e4b4b5a85e75
parent 54 7506e67dd122
child 180 786d4cba38fb
permissions -rw-r--r--
Slave alias implementiert.
#------------------------------------------------------------------------------
#
#  Makefile
#
#  IgH EtherCAT-Treiber - EtherCAT Geraete
#
#  $Id$
#
#------------------------------------------------------------------------------

ifneq ($(KERNELRELEASE),)

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

obj-m := ec_8139too.o

ec_8139too-objs := 8139too.o

REV = `svnversion $(src)`
DATE = `date`

EXTRA_CFLAGS = -DEC_REV="$(REV)" -DEC_USER="$(USER)" -DEC_DATE="$(DATE)"

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

else

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

ifneq ($(wildcard ethercat.conf),)
include ethercat.conf
else
KERNELDIR = /lib/modules/`uname -r`/build
endif

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

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

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

endif