43 lines
875 B
Makefile
43 lines
875 B
Makefile
#------------------------------------------------------------------------------
|
|
#
|
|
# 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
|