fp@364: #------------------------------------------------------------------------------ fp@364: # fp@364: # $Id$ fp@364: # fp@1326: # Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH fp@364: # fp@364: # This file is part of the IgH EtherCAT Master. fp@364: # fp@1326: # The IgH EtherCAT Master is free software; you can redistribute it and/or fp@1326: # modify it under the terms of the GNU General Public License version 2, as fp@1326: # published by the Free Software Foundation. fp@364: # fp@1326: # The IgH EtherCAT Master is distributed in the hope that it will be useful, fp@1326: # but WITHOUT ANY WARRANTY; without even the implied warranty of fp@1326: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General fp@1326: # Public License for more details. fp@364: # fp@1326: # You should have received a copy of the GNU General Public License along fp@1326: # with the IgH EtherCAT Master; if not, write to the Free Software fp@364: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@364: # fp@1363: # --- fp@1363: # fp@1363: # The license mentioned above concerns the source code only. Using the fp@1363: # EtherCAT technology and brand is only permitted in compliance with the fp@1326: # industrial property and similar rights of Beckhoff Automation GmbH. fp@364: # fp@364: #------------------------------------------------------------------------------ fp@364: fp@1432: ACLOCAL_AMFLAGS = -I m4 fp@1432: fp@922: SUBDIRS = \ fp@922: devices \ fp@922: include \ fp@922: master \ fp@1253: script fp@1253: fp@1253: if BUILD_TOOL fp@1253: SUBDIRS += tool fp@1253: endif fp@364: fp@1242: if ENABLE_USERLIB fp@1242: SUBDIRS += lib fp@1242: endif fp@1242: fp@1565: if ENABLE_TTY fp@1565: SUBDIRS += tty fp@1565: endif fp@1565: fp@1286: # userspace example depends on lib/ fp@1286: SUBDIRS += examples fp@1286: fp@922: DIST_SUBDIRS = \ fp@922: devices \ fp@922: examples \ fp@922: include \ fp@1242: lib \ fp@1439: m4 \ fp@922: master \ fp@922: script \ fp@1565: tool \ fp@1565: tty fp@364: fp@1280: noinst_HEADERS = \ fp@1280: globals.h fp@1280: fp@447: EXTRA_DIST = \ fp@1285: Doxyfile.in \ fp@447: FEATURES \ fp@732: Kbuild.in \ fp@1810: README.EoE \ fp@1810: ethercat.spec \ fp@1810: ethercat.spec.in fp@364: fp@1074: BUILT_SOURCES = \ fp@1268: Doxyfile \ fp@1810: Kbuild \ fp@1810: ethercat.spec fp@1074: fp@485: modules: fp@947: $(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" modules fp@485: fp@477: modules_install: fp@1824: $(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" \ fp@1824: INSTALL_MOD_DIR="$(INSTALL_MOD_DIR)" modules_install fp@477: fp@486: clean-local: fp@947: $(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" clean fp@486: fp@367: mydist: fp@1528: hg log --style=changelog $(srcdir) > ChangeLog fp@1528: @REV=`hg id -i $(srcdir)` && \ fp@1528: $(MAKE) dist-bzip2 distdir=$(PACKAGE)-$(VERSION)-$${REV} fp@367: fp@366: dist-hook: fp@1528: if which hg >/dev/null 2>&1; then \ fp@1528: hg id -i $(srcdir) 2>/dev/null >$(distdir)/revision; \ fp@366: fi fp@366: fp@486: mrproper: clean cleandoc fp@480: rm -rf \ fp@1242: *~ \ fp@1809: ChangeLog \ fp@1809: Doxyfile \ fp@1809: Kbuild \ fp@1809: Makefile \ fp@1809: Makefile.in \ fp@1809: TAGS \ fp@480: aclocal.m4 \ fp@480: autoconf \ fp@480: autom4te.cache \ fp@480: config.h \ fp@480: config.h.in \ fp@480: config.log \ fp@480: config.status \ fp@1242: configure \ fp@480: configure.in \ fp@1242: libtool \ fp@1809: stamp-h1 fp@480: fp@364: doc: fp@364: doxygen Doxyfile fp@364: fp@364: cleandoc: fp@370: @rm -rf doxygen-output fp@364: fp@364: #------------------------------------------------------------------------------