examples/tty/Makefile.am
changeset 1567 1babaa430b7b
parent 1363 11c0b2caa253
child 1613 070b4b420ab1
equal deleted inserted replaced
1566:d21470725798 1567:1babaa430b7b
       
     1 #------------------------------------------------------------------------------
       
     2 #
       
     3 #  Makefile.am
       
     4 #
       
     5 #  IgH EtherCAT master module
       
     6 #
       
     7 #  $Id$
       
     8 #
       
     9 #  Copyright (C) 2006-2008  Florian Pose, Ingenieurgemeinschaft IgH
       
    10 #
       
    11 #  This file is part of the IgH EtherCAT Master.
       
    12 #
       
    13 #  The IgH EtherCAT Master is free software; you can redistribute it and/or
       
    14 #  modify it under the terms of the GNU General Public License version 2, as
       
    15 #  published by the Free Software Foundation.
       
    16 #
       
    17 #  The IgH EtherCAT Master is distributed in the hope that it will be useful,
       
    18 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    19 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
       
    20 #  Public License for more details.
       
    21 #
       
    22 #  You should have received a copy of the GNU General Public License along
       
    23 #  with the IgH EtherCAT Master; if not, write to the Free Software
       
    24 #  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
       
    25 #
       
    26 #  ---
       
    27 #  
       
    28 #  The license mentioned above concerns the source code only. Using the
       
    29 #  EtherCAT technology and brand is only permitted in compliance with the
       
    30 #  industrial property and similar rights of Beckhoff Automation GmbH.
       
    31 #
       
    32 #------------------------------------------------------------------------------
       
    33 
       
    34 EXTRA_DIST = \
       
    35 	Kbuild.in \
       
    36 	tty.c
       
    37 
       
    38 BUILT_SOURCES = \
       
    39 	Kbuild
       
    40 
       
    41 modules:
       
    42 	$(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" modules
       
    43 
       
    44 modules_install:
       
    45 	mkdir -p $(DESTDIR)$(LINUX_MOD_PATH)
       
    46 	cp $(srcdir)/ec_tty_example.ko $(DESTDIR)$(LINUX_MOD_PATH)
       
    47 
       
    48 clean-local:
       
    49 	$(MAKE) -C "$(LINUX_SOURCE_DIR)" M="@abs_srcdir@" clean
       
    50 
       
    51 #------------------------------------------------------------------------------