fp@1242: #------------------------------------------------------------------------------ fp@1242: # fp@1266: # $Id$ fp@1242: # fp@1266: # Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH fp@1242: # fp@1266: # This file is part of the IgH EtherCAT master userspace library. fp@1242: # fp@1287: # The IgH EtherCAT master userspace library is free software; you can fp@1266: # redistribute it and/or modify it under the terms of the GNU Lesser General fp@1287: # Public License as published by the Free Software Foundation; version 2.1 of fp@1266: # the License. fp@1287: # fp@1266: # The IgH EtherCAT master userspace library is distributed in the hope that it fp@1266: # will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty fp@1287: # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser fp@1266: # General Public License for more details. fp@1287: # fp@1266: # You should have received a copy of the GNU Lesser General Public License fp@1266: # along with the IgH EtherCAT master userspace library. If not, see fp@1266: # . fp@1242: # fp@1266: # The right to use EtherCAT Technology is granted and comes free of charge fp@1266: # under condition of compatibility of product made by Licensee. People fp@1266: # intending to distribute/sell products based on the code, have to sign an fp@1266: # agreement to guarantee that products using software based on IgH EtherCAT fp@1266: # master stay compatible with the actual EtherCAT specification (which are fp@1266: # released themselves as an open standard) as the (only) precondition to have fp@1266: # the right to use EtherCAT Technology, IP and trade marks. fp@1242: # fp@1242: #------------------------------------------------------------------------------ fp@1242: fp@1242: AM_CFLAGS = -Wall fp@1242: fp@1242: lib_LTLIBRARIES = libethercat.la fp@1242: fp@1242: #------------------------------------------------------------------------------ fp@1242: fp@1242: libethercat_la_LDFLAGS = -version-info 1:0:0 fp@1242: libethercat_la_CFLAGS = -I$(srcdir)/.. fp@1242: libethercat_la_SOURCES = \ fp@1244: common.c \ fp@1255: domain.c \ fp@1255: master.c \ fp@1264: slave_config.c \ fp@1264: voe_handler.c fp@1244: fp@1244: noinst_HEADERS = \ fp@1244: domain.h \ fp@1246: master.h \ fp@1264: slave_config.h \ fp@1264: voe_handler.h fp@1242: fp@1242: #------------------------------------------------------------------------------