OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [hal/] [synth/] [arch/] [current/] [host/] [Makefile.am] - Blame information for rev 817

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
## Process this file with automake to produce Makefile.in
2
## =====================================================================
3
##
4
##     Makefile.am
5
##
6
##     Build support for the host-side synthetic target support,
7
##     the arch package.
8
##
9
##
10
## =====================================================================
11
# ####ECOSHOSTGPLCOPYRIGHTBEGIN####
12
# -------------------------------------------
13
# This file is part of the eCos host tools.
14
# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
15
#
16
# This program is free software; you can redistribute it and/or modify
17
# it under the terms of the GNU General Public License as published by
18
# the Free Software Foundation; either version 2 or (at your option) any
19
# later version.
20
#
21
# This program is distributed in the hope that it will be useful, but
22
# WITHOUT ANY WARRANTY; without even the implied warranty of
23
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24
# General Public License for more details.
25
#
26
# You should have received a copy of the GNU General Public License
27
# along with this program; if not, write to the
28
# Free Software Foundation, Inc., 51 Franklin Street,
29
# Fifth Floor, Boston, MA  02110-1301, USA.
30
# -------------------------------------------
31
# ####ECOSHOSTGPLCOPYRIGHTEND####
32
## =====================================================================
33
#######DESCRIPTIONBEGIN####
34
##
35
## Author(s):   bartv
36
## Contact(s):  bartv
37
## Date:        2002/08/06
38
## Version:     0.01
39
##
40
######DESCRIPTIONEND####
41
## =====================================================================
42
 
43
AUTOMAKE_OPTIONS = 1.10 foreign
44
 
45
## Only some platforms are supported. Having the configure script throw
46
## an error when attempting to configure on an unsupported platform
47
## would be a mistake, since that would prevent any configury from
48
## the toplevel on unsupported platforms. Instead an automake conditional
49
## is used, leading to null makefiles on unsupported platforms.
50
 
51
 
52
AM_CFLAGS       = @ecos_CFLAGS@ -DECOSYNTH_VERSION=\"@VERSION@\" \
53
 -DECOS_REPOSITORY=\"@ECOS_REPOSITORY@\" \
54
 -DLIBEXECDIR=\"$(libexecdir)\" \
55
 -DPKG_DIR=\"@PACKAGE_DIR@\" \
56
 -DPKG_VERSION=\"@PACKAGE_VERSION@\" \
57
 -DPKG_INSTALL=\"@PACKAGE_INSTALL@\"
58
AM_CXXFLAGS     = @ecos_CXXFLAGS@
59
INCLUDES        = @ecos_INCLUDES@ @ecos_tk_includes@
60
LIBS            = @ecos_LIBS@ @ecos_LDADD@
61
 
62
if SUPPORTED
63
## The synthetic target support consists of a single program ecosynth,
64
## a number of Tcl scripts, and some additional data files. These are
65
## all installed in a single directory $(libexec)/ecos/_/
66
## Neither the ecosynth executable nor any of the scripts are directly
67
## executable, instead ecosynth gets fork()'d/execve()'d by the eCos
68
## application so $(libexec) is appropriate. Strictly speaking the
69
## Tcl scripts and data files are architecture-independent so should
70
## probably be installed in an analogous directory below $(datadir),
71
## but that would add more directories for little real gain. The scripts
72
## are treated as data files since they should not be executed directly,
73
## i.e. they should not be installed with the execute bit set.
74
 
75
synthdir                = $(libexecdir)/ecos/@PACKAGE_INSTALL@
76
synth_PROGRAMS          = ecosynth
77
synth_DATA              = ecosynth.tcl default.tdf user_initrc.tcl user_mainrc.tcl \
78
                          console.tcl \
79
                          ecosicon.xbm ecosiconmask.xbm tick_yes.xbm tick_no.xbm \
80
                          save.xbm cut.xbm copy.xbm paste.xbm help.xbm running1.ppm \
81
                          saveall.xbm
82
 
83
ecosynth_SOURCES        = ecosynth.c
84
ecosynth_LDADD          = @ecos_tk_libs@
85
 
86
## Manual dependencies
87
ecosynth.$(OBJEXT)      : Makefile ../src/synth_protocol.h
88
 
89
endif

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.