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@1326: # Using the EtherCAT technology and brand is permitted in compliance with the fp@1326: # industrial property and similar rights of Beckhoff Automation GmbH. fp@364: # fp@364: #------------------------------------------------------------------------------ fp@364: 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@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@922: master \ fp@922: script \ fp@1120: tool 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@711: README.EoE fp@364: fp@1074: BUILT_SOURCES = \ fp@1268: Doxyfile \ fp@1074: Kbuild fp@1074: fp@485: modules: fp@947: $(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" modules fp@485: fp@477: modules_install: fp@477: $(MAKE) -C master modules_install fp@477: $(MAKE) -C devices modules_install fp@477: fp@486: clean-local: fp@947: $(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" clean fp@486: @rm -f Modules.symvers fp@486: fp@367: mydist: fp@543: svn2cl $(srcdir) fp@375: @SVNREV=`svnversion $(srcdir)` && \ fp@444: $(MAKE) dist-bzip2 \ fp@1211: distdir=$(PACKAGE)-$(VERSION)-r$${SVNREV} fp@367: fp@366: dist-hook: fp@366: if which svnversion >/dev/null 2>&1; then \ fp@366: svnversion $(srcdir) 2>/dev/null >$(distdir)/svnrevision; \ fp@366: fi fp@366: fp@486: mrproper: clean cleandoc fp@480: rm -rf \ fp@1242: *~ \ fp@480: aclocal.m4 \ fp@480: autoconf \ fp@480: autom4te.cache \ fp@1242: ChangeLog \ 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: Doxyfile \ fp@1242: Kbuild \ fp@1242: libtool \ fp@480: Makefile \ fp@480: Makefile.in \ fp@1242: Module.symvers \ fp@567: stamp-h1 \ fp@1242: TAGS fp@480: fp@364: doc: fp@364: doxygen Doxyfile fp@364: fp@364: cleandoc: fp@370: @rm -rf doxygen-output fp@364: fp@364: #------------------------------------------------------------------------------