master/Makefile
author Florian Pose <fp@igh-essen.com>
Thu, 20 Apr 2006 13:19:36 +0000
changeset 194 c21e7c12dd50
parent 191 ca805255a935
child 196 f8a1e9f364a3
permissions -rw-r--r--
Moved fragen.txt outside the source tree, renamed todo.txt to TODO
#------------------------------------------------------------------------------
#
#  Makefile
#
#  IgH EtherCAT master module
#
#  $Id$
#
#------------------------------------------------------------------------------

ifneq ($(KERNELRELEASE),)

#------------------------------------------------------------------------------
#  kbuild section

obj-m := ec_master.o

ec_master-objs := module.o master.o device.o slave.o command.o types.o \
			domain.o mailbox.o canopen.o ethernet.o

EXTRA_CFLAGS := -DSVNREV=$(shell svnversion $(src)) -DUSER=$(USER)

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

else

#------------------------------------------------------------------------------
#  default section

ifneq ($(wildcard ../ethercat.conf),)
include ../ethercat.conf
else
KERNEL := $(shell uname -r)
endif

KERNELDIR := /lib/modules/$(KERNEL)/build

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

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

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

endif