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 watchdog package
|
8 |
|
|
##
|
9 |
|
|
## =====================================================================
|
10 |
|
|
# ####ECOSHOSTGPLCOPYRIGHTBEGIN####
|
11 |
|
|
# -------------------------------------------
|
12 |
|
|
# This file is part of the eCos host tools.
|
13 |
|
|
# Copyright (C) 2002 Free Software Foundation, Inc.
|
14 |
|
|
#
|
15 |
|
|
# This program is free software; you can redistribute it and/or modify
|
16 |
|
|
# it under the terms of the GNU General Public License as published by
|
17 |
|
|
# the Free Software Foundation; either version 2 or (at your option) any
|
18 |
|
|
# later version.
|
19 |
|
|
#
|
20 |
|
|
# This program is distributed in the hope that it will be useful, but
|
21 |
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
23 |
|
|
# General Public License for more details.
|
24 |
|
|
#
|
25 |
|
|
# You should have received a copy of the GNU General Public License
|
26 |
|
|
# along with this program; if not, write to the
|
27 |
|
|
# Free Software Foundation, Inc., 51 Franklin Street,
|
28 |
|
|
# Fifth Floor, Boston, MA 02110-1301, USA.
|
29 |
|
|
# -------------------------------------------
|
30 |
|
|
# ####ECOSHOSTGPLCOPYRIGHTEND####
|
31 |
|
|
## =====================================================================
|
32 |
|
|
#######DESCRIPTIONBEGIN####
|
33 |
|
|
##
|
34 |
|
|
## Author(s): bartv
|
35 |
|
|
## Contact(s): bartv
|
36 |
|
|
## Date: 2002/09/04
|
37 |
|
|
## Version: 0.01
|
38 |
|
|
##
|
39 |
|
|
######DESCRIPTIONEND####
|
40 |
|
|
## =====================================================================
|
41 |
|
|
|
42 |
|
|
AUTOMAKE_OPTIONS = 1.10 foreign
|
43 |
|
|
|
44 |
|
|
## Only some platforms are supported. Having the configure script throw
|
45 |
|
|
## an error when attempting to configure on an unsupported platform
|
46 |
|
|
## would be a mistake, since that would prevent any configury from
|
47 |
|
|
## the toplevel on unsupported platforms. Instead an automake conditional
|
48 |
|
|
## is used, leading to null makefiles on unsupported platforms.
|
49 |
|
|
|
50 |
|
|
if SUPPORTED
|
51 |
|
|
|
52 |
|
|
## The only thing that needs to be installed is a Tcl script and some
|
53 |
|
|
## data files.
|
54 |
|
|
watchdogdir = $(libexecdir)/ecos/@PACKAGE_INSTALL@
|
55 |
|
|
watchdog_DATA = watchdog.tcl \
|
56 |
|
|
watchdog.tdf \
|
57 |
|
|
alarm.gif doghouse.gif eye.gif asleep.gif \
|
58 |
|
|
sound1.au sound2.au
|
59 |
|
|
endif
|