fp@2447: #------------------------------------------------------------------------------ fp@2447: # fp@2447: # $Id$ fp@2447: # fp@2447: # Copyright (C) 2006-2012 Florian Pose, Ingenieurgemeinschaft IgH fp@2447: # fp@2447: # This file is part of the IgH EtherCAT Master. fp@2447: # fp@2447: # The IgH EtherCAT Master is free software; you can redistribute it and/or fp@2447: # modify it under the terms of the GNU General Public License version 2, as fp@2447: # published by the Free Software Foundation. fp@2447: # fp@2447: # The IgH EtherCAT Master is distributed in the hope that it will be useful, fp@2447: # but WITHOUT ANY WARRANTY; without even the implied warranty of fp@2447: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General fp@2447: # Public License for more details. fp@2447: # fp@2447: # You should have received a copy of the GNU General Public License along with fp@2447: # the IgH EtherCAT Master; if not, write to the Free Software Foundation, fp@2447: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@2447: # fp@2447: # --- fp@2447: # fp@2447: # The license mentioned above concerns the source code only. Using the fp@2447: # EtherCAT technology and brand is only permitted in compliance with the fp@2447: # industrial property and similar rights of Beckhoff Automation GmbH. fp@2447: # fp@2447: #------------------------------------------------------------------------------ fp@2447: fp@2447: noinst_PROGRAMS = ec_rtai_rtdm_dc_example fp@2447: fp@2447: ec_rtai_rtdm_dc_example_SOURCES = main.c fp@2447: fp@2447: ec_rtai_rtdm_dc_example_CFLAGS = \ fp@2447: -Wall \ fp@2447: -I$(top_srcdir)/include \ fp@2447: $(RTAI_LXRT_CFLAGS) fp@2447: fp@2447: ec_rtai_rtdm_dc_example_LDFLAGS = \ fp@2447: $(RTAI_LXRT_LDFLAGS) -llxrt -lrtdm \ fp@2447: -L$(top_builddir)/lib/.libs -lethercat_rtdm fp@2447: fp@2447: #------------------------------------------------------------------------------