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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [devs/] [watchdog/] [synth/] [current/] [host/] [configure.in] - Blame information for rev 786

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
dnl Process this file with autoconf to produce a configure script.
2
dnl ====================================================================
3
dnl
4
dnl     configure.in
5
dnl
6
dnl     configure script for eCos synthetic target watchdog
7
dnl     host-side support
8
dnl
9
dnl ====================================================================
10
dnl ####ECOSHOSTGPLCOPYRIGHTBEGIN####
11
dnl -------------------------------------------
12
dnl This file is part of the eCos host tools.
13
dnl Copyright (C) 2002 Free Software Foundation, Inc.
14
dnl
15
dnl This program is free software; you can redistribute it and/or modify
16
dnl it under the terms of the GNU General Public License as published by
17
dnl the Free Software Foundation; either version 2 or (at your option) any
18
dnl later version.
19
dnl
20
dnl This program is distributed in the hope that it will be useful, but
21
dnl WITHOUT ANY WARRANTY; without even the implied warranty of
22
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23
dnl General Public License for more details.
24
dnl
25
dnl You should have received a copy of the GNU General Public License
26
dnl along with this program; if not, write to the
27
dnl Free Software Foundation, Inc., 51 Franklin Street,
28
dnl Fifth Floor, Boston, MA  02110-1301, USA.
29
dnl -------------------------------------------
30
dnl ####ECOSHOSTGPLCOPYRIGHTEND####
31
dnl ====================================================================
32
dnl#####DESCRIPTIONBEGIN####
33
dnl
34
dnl Author(s):  bartv
35
dnl Contact(s): bartv
36
dnl Date:       2002/09/04
37
dnl Version:    0.01
38
dnl
39
dnl####DESCRIPTIONEND####
40
dnl ====================================================================
41
 
42
 
43
AC_INIT(watchdog.tcl)
44
 
45
dnl Pick up the support files from the top-level acsupport directory.
46
AC_CONFIG_AUX_DIR(../../../../../../acsupport)
47
 
48
ECOS_CHECK_BUILD_ne_SRC
49
AC_CANONICAL_HOST
50
AM_INIT_AUTOMAKE(eCos_synthetic_target_watchdog,0.1,0)
51
AM_MAINTAINER_MODE
52
 
53
dnl The current version of the synthetic target is implemented only for
54
dnl x86 Linux platforms, so a test is appropriate here. However
55
dnl it is not a good idea for the configure script to report an error:
56
dnl that would prevent any top-level configury working for other
57
dnl platforms. Instead an automake conditional is used to suppress adding
58
dnl targets to the build.
59
case "${host}" in
60
    i[[34567]]86-*-linux-gnu* ) SUPPORTED="yes";;
61
    x86_64-*-linux-gnu* ) SUPPORTED="yes";;
62
    * ) SUPPORTED="no"
63
esac
64
AM_CONDITIONAL(SUPPORTED, test "${SUPPORTED}" = "yes")
65
 
66
dnl The watchdog host-side support only involves a Tcl
67
dnl script and data files, so nothing needs to be compiled
68
if test "${SUPPORTED}" = "yes" ; then
69
    ECOS_PACKAGE_DIRS
70
fi
71
 
72
AC_OUTPUT(Makefile:Makefile.in)

powered by: WebSVN 2.1.0

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