mini/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 02 Dec 2005 09:03:32 +0000
branchkernel2.6
changeset 24 d417dd9bdc2f
parent 22 e8c2cd004e0b
child 46 f2d7a73d2f32
permissions -rw-r--r--
Wilhelms ?nderungen ?bernommen.
#----------------------------------------------------------------
#
#  Makefile
#
#  Minimales EtherCAT-Modul
#
#  $Id$
#
#----------------------------------------------------------------

ifneq ($(KERNELRELEASE),)

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

obj-m := ec_mini_mod.o

ec_mini_mod-objs := ec_mini.o

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

else

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

CONFIG_FILE = ../ethercat.conf
PWD = $(shell pwd)


include $(CONFIG_FILE) # Für KERNELDIR

default:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules

clean:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) clean

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

endif