author | Florian Pose <fp@igh-essen.com> |
Wed, 22 Oct 2008 08:17:34 +0000 | |
changeset 1291 | 9ce46c40a023 |
parent 1287 | cc7b679c74e9 |
child 1326 | ef907b0b5125 |
permissions | -rw-r--r-- |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
1 |
#------------------------------------------------------------------------------ |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
2 |
# |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
3 |
# $Id$ |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
4 |
# |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
5 |
# Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
6 |
# |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
7 |
# This file is part of the IgH EtherCAT master userspace library. |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
8 |
# |
1287 | 9 |
# The IgH EtherCAT master userspace library is free software; you can |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
10 |
# redistribute it and/or modify it under the terms of the GNU Lesser General |
1287 | 11 |
# Public License as published by the Free Software Foundation; version 2.1 of |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
12 |
# the License. |
1287 | 13 |
# |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
14 |
# The IgH EtherCAT master userspace library is distributed in the hope that it |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
15 |
# will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty |
1287 | 16 |
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
17 |
# General Public License for more details. |
1287 | 18 |
# |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
19 |
# You should have received a copy of the GNU Lesser General Public License |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
20 |
# along with the IgH EtherCAT master userspace library. If not, see |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
21 |
# <http://www.gnu.org/licenses/>. |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
22 |
# |
1266
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
23 |
# The right to use EtherCAT Technology is granted and comes free of charge |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
24 |
# under condition of compatibility of product made by Licensee. People |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
25 |
# intending to distribute/sell products based on the code, have to sign an |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
26 |
# agreement to guarantee that products using software based on IgH EtherCAT |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
27 |
# master stay compatible with the actual EtherCAT specification (which are |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
28 |
# released themselves as an open standard) as the (only) precondition to have |
dd1f501c4070
Added LGPL licence headers to userspace library.
Florian Pose <fp@igh-essen.com>
parents:
1264
diff
changeset
|
29 |
# the right to use EtherCAT Technology, IP and trade marks. |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
30 |
# |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
31 |
#------------------------------------------------------------------------------ |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
32 |
|
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
33 |
AM_CFLAGS = -Wall |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
34 |
|
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
35 |
lib_LTLIBRARIES = libethercat.la |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
36 |
|
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
37 |
#------------------------------------------------------------------------------ |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
38 |
|
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
39 |
libethercat_la_LDFLAGS = -version-info 1:0:0 |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
40 |
libethercat_la_CFLAGS = -I$(srcdir)/.. |
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
41 |
libethercat_la_SOURCES = \ |
1244
0b70040d3daa
No kernel handles in userspace; Domain creation.
Florian Pose <fp@igh-essen.com>
parents:
1242
diff
changeset
|
42 |
common.c \ |
1255
38b7e05b20c1
Added some slave configuration methods.
Florian Pose <fp@igh-essen.com>
parents:
1246
diff
changeset
|
43 |
domain.c \ |
38b7e05b20c1
Added some slave configuration methods.
Florian Pose <fp@igh-essen.com>
parents:
1246
diff
changeset
|
44 |
master.c \ |
1264
e7882f246d7a
Implemented VoE handler in userspace.
Florian Pose <fp@igh-essen.com>
parents:
1255
diff
changeset
|
45 |
slave_config.c \ |
e7882f246d7a
Implemented VoE handler in userspace.
Florian Pose <fp@igh-essen.com>
parents:
1255
diff
changeset
|
46 |
voe_handler.c |
1244
0b70040d3daa
No kernel handles in userspace; Domain creation.
Florian Pose <fp@igh-essen.com>
parents:
1242
diff
changeset
|
47 |
|
0b70040d3daa
No kernel handles in userspace; Domain creation.
Florian Pose <fp@igh-essen.com>
parents:
1242
diff
changeset
|
48 |
noinst_HEADERS = \ |
0b70040d3daa
No kernel handles in userspace; Domain creation.
Florian Pose <fp@igh-essen.com>
parents:
1242
diff
changeset
|
49 |
domain.h \ |
1246
4042bda8c980
Creating slave configurations.
Florian Pose <fp@igh-essen.com>
parents:
1244
diff
changeset
|
50 |
master.h \ |
1264
e7882f246d7a
Implemented VoE handler in userspace.
Florian Pose <fp@igh-essen.com>
parents:
1255
diff
changeset
|
51 |
slave_config.h \ |
e7882f246d7a
Implemented VoE handler in userspace.
Florian Pose <fp@igh-essen.com>
parents:
1255
diff
changeset
|
52 |
voe_handler.h |
1242
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
53 |
|
632a6b91f8e4
First version of userspace library with requesting/releasing.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
54 |
#------------------------------------------------------------------------------ |