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