Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 03 Apr 2006 19:16:59 +0000
changeset 148 9b68b77572cc
parent 103 d2a8adde27c4
child 149 0ed43f09130f
permissions -rw-r--r--
Neue Keywords
#------------------------------------------------------------------------------
#
#  Globales Makefile
#
#  IgH EtherCAT-Treiber
#
#  $Revision$
#  $Date$
#  $Author$
#  $URL$
#
#------------------------------------------------------------------------------

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