comparison host/tools/configtool/standalone/common/Makefile.am @ 76:435cced73e2f ecos-v1_3_1-release

eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST
author jlarmour
date Tue, 28 Mar 2000 14:10:45 +0000
parents
children 511f4dc167f6
comparison
equal deleted inserted replaced
75:41bf073c0c32 76:435cced73e2f
1 ## Process this file with automake to produce Makefile.in
2 ## =====================================================================
3 ##
4 ## Makefile.am
5 ##
6 ## ecostest
7 ##
8 ## =====================================================================
9 #####COPYRIGHTBEGIN####
10 #
11 # -------------------------------------------
12 # The contents of this file are subject to the Red Hat eCos Public License
13 # Version 1.1 (the "License"); you may not use this file except in
14 # compliance with the License. You may obtain a copy of the License at
15 # http://www.redhat.com/
16 #
17 # Software distributed under the License is distributed on an "AS IS"
18 # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
19 # License for the specific language governing rights and limitations under
20 # the License.
21 #
22 # The Original Code is eCos - Embedded Configurable Operating System,
23 # released September 30, 1998.
24 #
25 # The Initial Developer of the Original Code is Red Hat.
26 # Portions created by Red Hat are
27 # Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
28 # All Rights Reserved.
29 # -------------------------------------------
30 #
31 ######COPYRIGHTEND####
32 ## =====================================================================
33 #######DESCRIPTIONBEGIN####
34 ##
35 ## Author(s): bartv
36 ## Contact(s): bartv
37 ## Date: 1999/11/09
38 ## Version: 0.01
39 ##
40 ######DESCRIPTIONEND####
41 ## =====================================================================
42
43 AUTOMAKE_OPTIONS = 1.3 cygnus
44 SUBDIRS =
45
46 ## Pick up an appropriate header file search path from configure
47 INCLUDES = -I@cyg_ac_infra_incdir@ -I@cyg_ac_cdl_incdir@ -I@cyg_ac_tcl_incdir@ -I@win_srcdir@/../../common/common
48
49 if MSVC
50 LIBS = @cyg_ac_cdl_libraries@ @cyg_ac_infra_libraries@ @cyg_ac_tcl_libs@ \
51 -link -libpath=@cyg_ac_infra_libdir@ -libpath=@cyg_ac_cdl_libdir@ -libpath=@cyg_ac_tcl_libdir@
52 else
53 LIBS = -L@cyg_ac_infra_libdir@ -L@cyg_ac_cdl_libdir@ -L@cyg_ac_tcl_libdir@ \
54 $(foreach x,@cyg_ac_cdl_libraries@,-l$x) \
55 $(foreach x,@cyg_ac_infra_libraries@,-l$x) \
56 @cyg_ac_tcl_libs@
57 endif
58
59 BUILT_SOURCES = build.cxx flags.cxx
60 bin_PROGRAMS = ecosconfig
61 ecosconfig_SOURCES = ecosconfig.cxx cdl_exec.cxx build.cxx flags.cxx
62 if MSVC
63 ecosconfig_DEPENDENCIES = @cyg_ac_cdl_libdir@/cdl.lib @cyg_ac_infra_libdir@/cyginfra.lib
64 else
65 ecosconfig_DEPENDENCIES = @cyg_ac_cdl_libdir@/libcdl.a @cyg_ac_infra_libdir@/libcyginfra.a
66 endif
67
68
69 noinst_HEADERS = cdl_exec.hxx ecosconfig.hxx
70
71 build.cxx: ../../common/common/build.cxx
72 $(INSTALL) $< $@
73
74 flags.cxx: ../../common/common/flags.cxx
75 $(INSTALL) $< $@
76