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 Top-level configure script for eCos host-side software.
|
7 |
|
|
dnl
|
8 |
|
|
dnl ====================================================================
|
9 |
|
|
dnl ####ECOSHOSTGPLCOPYRIGHTBEGIN####
|
10 |
|
|
dnl -------------------------------------------
|
11 |
|
|
dnl This file is part of the eCos host tools.
|
12 |
|
|
dnl Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
13 |
|
|
dnl
|
14 |
|
|
dnl This program is free software; you can redistribute it and/or modify
|
15 |
|
|
dnl it under the terms of the GNU General Public License as published by
|
16 |
|
|
dnl the Free Software Foundation; either version 2 or (at your option) any
|
17 |
|
|
dnl later version.
|
18 |
|
|
dnl
|
19 |
|
|
dnl This program is distributed in the hope that it will be useful, but
|
20 |
|
|
dnl WITHOUT ANY WARRANTY; without even the implied warranty of
|
21 |
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
22 |
|
|
dnl General Public License for more details.
|
23 |
|
|
dnl
|
24 |
|
|
dnl You should have received a copy of the GNU General Public License
|
25 |
|
|
dnl along with this program; if not, write to the
|
26 |
|
|
dnl Free Software Foundation, Inc., 51 Franklin Street,
|
27 |
|
|
dnl Fifth Floor, Boston, MA 02110-1301, USA.
|
28 |
|
|
dnl -------------------------------------------
|
29 |
|
|
dnl ####ECOSHOSTGPLCOPYRIGHTEND####
|
30 |
|
|
dnl ====================================================================
|
31 |
|
|
dnl#####DESCRIPTIONBEGIN####
|
32 |
|
|
dnl
|
33 |
|
|
dnl Author(s): bartv
|
34 |
|
|
dnl Contact(s): bartv
|
35 |
|
|
dnl Date: 1998/12/17
|
36 |
|
|
dnl Version: 0.01
|
37 |
|
|
dnl
|
38 |
|
|
dnl####DESCRIPTIONEND####
|
39 |
|
|
dnl ====================================================================
|
40 |
|
|
|
41 |
|
|
dnl Generic initialization
|
42 |
|
|
AC_INIT(../acsupport/config.guess)
|
43 |
|
|
AC_CONFIG_AUX_DIR(../acsupport)
|
44 |
|
|
AC_CANONICAL_HOST
|
45 |
|
|
AM_INIT_AUTOMAKE(eCos,2.0,0)
|
46 |
|
|
AM_MAINTAINER_MODE
|
47 |
|
|
ECOS_CHECK_BUILD_ne_SRC
|
48 |
|
|
|
49 |
|
|
dnl Nothing actually gets built in this directory, so there is no
|
50 |
|
|
dnl point in worrying about compiler flags etc. Instead just
|
51 |
|
|
dnl recurse into appropriate subdirectories. The current directory
|
52 |
|
|
dnl tree is rather deep, so to avoid having to create lots of intermediate
|
53 |
|
|
dnl configure scripts and associated files the required build tree
|
54 |
|
|
dnl subdirectories are created here.
|
55 |
|
|
AC_OUTPUT_COMMANDS([
|
56 |
|
|
test -d tools || mkdir tools
|
57 |
|
|
test -d tools/configtool || mkdir tools/configtool
|
58 |
|
|
test -d tools/configtool/standalone || mkdir tools/configtool/standalone
|
59 |
|
|
test -d tools/configtool/standalone/common || mkdir tools/configtool/standalone/common
|
60 |
|
|
])
|
61 |
|
|
|
62 |
|
|
dnl AC_SUBST(SUBDIRS)
|
63 |
|
|
dnl AC_CONFIG_SUBDIRS([${SUBDIRS}])
|
64 |
|
|
AC_CONFIG_SUBDIRS([infra])
|
65 |
|
|
AC_CONFIG_SUBDIRS([libcdl])
|
66 |
|
|
AC_CONFIG_SUBDIRS([tools/configtool/standalone/common])
|
67 |
|
|
AC_OUTPUT(Makefile)
|