44 lines
905 B
Makefile
44 lines
905 B
Makefile
#------------------------------------------------------------------------------
|
|
#
|
|
# Globales Makefile
|
|
#
|
|
# IgH EtherCAT-Treiber
|
|
#
|
|
# $Id$
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
#------------------------------------------------------------------------------
|
|
# Kbuild-Abschnitt
|
|
|
|
obj-m := master/ devices/
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
else
|
|
|
|
#------------------------------------------------------------------------------
|
|
# Default-Abschnitt
|
|
|
|
ifneq ($(wildcard ethercat.conf),)
|
|
include ethercat.conf
|
|
else
|
|
KERNELDIR := /usr/src/linux
|
|
INSTALLDIR := /opt/ethercat
|
|
endif
|
|
|
|
modules:
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd`
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd` clean
|
|
|
|
install:
|
|
@./install.sh $(INSTALLDIR)
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
endif
|