44 lines
899 B
Makefile
44 lines
899 B
Makefile
#----------------------------------------------------------------
|
|
#
|
|
# Makefile
|
|
#
|
|
# Minimales EtherCAT-Modul
|
|
#
|
|
# $Id$
|
|
#
|
|
#----------------------------------------------------------------
|
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
#----------------------------------------------------------------
|
|
# Kbuild-Abschnitt
|
|
#----------------------------------------------------------------
|
|
|
|
obj-m := ec_mini.o
|
|
|
|
ec_mini-objs := mini.o
|
|
|
|
#----------------------------------------------------------------
|
|
|
|
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
|