1 |
786 |
skrzyp |
## Process this file with automake to produce Makefile.in
|
2 |
|
|
## =====================================================================
|
3 |
|
|
##
|
4 |
|
|
## Makefile.am
|
5 |
|
|
##
|
6 |
|
|
## ecostest
|
7 |
|
|
##
|
8 |
|
|
## =====================================================================
|
9 |
|
|
# ####ECOSHOSTGPLCOPYRIGHTBEGIN####
|
10 |
|
|
# -------------------------------------------
|
11 |
|
|
# This file is part of the eCos host tools.
|
12 |
|
|
# Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
13 |
|
|
#
|
14 |
|
|
# This program is free software; you can redistribute it and/or modify
|
15 |
|
|
# it under the terms of the GNU General Public License as published by
|
16 |
|
|
# the Free Software Foundation; either version 2 or (at your option) any
|
17 |
|
|
# later version.
|
18 |
|
|
#
|
19 |
|
|
# This program is distributed in the hope that it will be useful, but
|
20 |
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
21 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
22 |
|
|
# General Public License for more details.
|
23 |
|
|
#
|
24 |
|
|
# You should have received a copy of the GNU General Public License
|
25 |
|
|
# along with this program; if not, write to the
|
26 |
|
|
# Free Software Foundation, Inc., 51 Franklin Street,
|
27 |
|
|
# Fifth Floor, Boston, MA 02110-1301, USA.
|
28 |
|
|
# -------------------------------------------
|
29 |
|
|
# ####ECOSHOSTGPLCOPYRIGHTEND####
|
30 |
|
|
## =====================================================================
|
31 |
|
|
#######DESCRIPTIONBEGIN####
|
32 |
|
|
##
|
33 |
|
|
## Author(s): bartv,jskov
|
34 |
|
|
## Contact(s): jskov
|
35 |
|
|
## Date: 2000/09/15
|
36 |
|
|
## Version: 0.01
|
37 |
|
|
##
|
38 |
|
|
######DESCRIPTIONEND####
|
39 |
|
|
## =====================================================================
|
40 |
|
|
|
41 |
|
|
AUTOMAKE_OPTIONS = 1.3 cygnus
|
42 |
|
|
SUBDIRS =
|
43 |
|
|
|
44 |
|
|
## Pick up an appropriate header file search path from configure
|
45 |
|
|
INCLUDES = -I@cyg_ac_infra_incdir@ -I@cyg_ac_cdl_incdir@ -I@cyg_ac_utils_incdir@ -I@cyg_ac_tcl_incdir@
|
46 |
|
|
|
47 |
|
|
LIBS = -L@cyg_ac_infra_libdir@ -L@cyg_ac_cdl_libdir@ \
|
48 |
|
|
-L@cyg_ac_utils_libdir@ -L@cyg_ac_tcl_libdir@ \
|
49 |
|
|
$(foreach x,@cyg_ac_cdl_libraries@,-l$x) \
|
50 |
|
|
$(foreach x,@cyg_ac_infra_libraries@,-l$x) \
|
51 |
|
|
$(foreach x,@cyg_ac_utils_libraries@,-l$x) \
|
52 |
|
|
@cyg_ac_tcl_libs@
|
53 |
|
|
|
54 |
|
|
bin_PROGRAMS = ser_filter permtest
|
55 |
|
|
|
56 |
|
|
ser_filter_SOURCES = ser_filter.cpp eCosTestMonitorFilter.cpp \
|
57 |
|
|
eCosTestSerialFilter.cpp eCosTestUtils.cpp \
|
58 |
|
|
eCosTestDownloadFilter.cpp TestResource.cpp \
|
59 |
|
|
eCosTestPlatform.cpp eCosTest.cpp \
|
60 |
|
|
ResetAttributes.cpp
|
61 |
|
|
|
62 |
|
|
ser_filter_DEPENDENCIES = @cyg_ac_utils_libdir@/libutils.a
|
63 |
|
|
ser_filter_LDADD = -lpthread
|
64 |
|
|
|
65 |
|
|
permtest_SOURCES = permtest.cxx
|
66 |
|
|
permtest_DEPENDENCIES = @cyg_ac_cdl_libdir@/libcdl.a @cyg_ac_infra_libdir@/libcyginfra.a
|