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 libcdl.a
|
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/16
|
36 |
|
|
dnl Version: 0.01
|
37 |
|
|
dnl
|
38 |
|
|
dnl####DESCRIPTIONEND####
|
39 |
|
|
dnl ====================================================================
|
40 |
|
|
|
41 |
|
|
dnl The core header file had better be present.
|
42 |
|
|
AC_INIT(cdlcore.hxx)
|
43 |
|
|
|
44 |
|
|
dnl Pick up the support files from the top-level acsupport directory.
|
45 |
|
|
AC_CONFIG_AUX_DIR(../../acsupport)
|
46 |
|
|
|
47 |
|
|
ECOS_CHECK_BUILD_ne_SRC
|
48 |
|
|
AC_CANONICAL_HOST
|
49 |
|
|
AM_INIT_AUTOMAKE(libcdl, 0.2)
|
50 |
|
|
ECOS_SUBST_VERSION(CYGNUM_LIBCDL_VERSION)
|
51 |
|
|
AM_MAINTAINER_MODE
|
52 |
|
|
|
53 |
|
|
dnl The package contains a library implemented in C++. It has to be
|
54 |
|
|
dnl buildable under NT. Only a static version of the library is
|
55 |
|
|
dnl of interest at the moment.
|
56 |
|
|
AC_PROG_CC
|
57 |
|
|
AC_PROG_CXX
|
58 |
|
|
AC_PROG_RANLIB
|
59 |
|
|
AC_OBJEXT
|
60 |
|
|
AC_EXEEXT
|
61 |
|
|
ECOS_PROG_MSVC
|
62 |
|
|
ECOS_PROG_STANDARD_COMPILER_FLAGS
|
63 |
|
|
ECOS_ARG_INFRASTRUCTURE
|
64 |
|
|
ECOS_PATH_INFRA
|
65 |
|
|
ECOS_PATH_TCL
|
66 |
|
|
|
67 |
|
|
AM_CONFIG_HEADER(cdlconfig.h:config.h.in)
|
68 |
|
|
AC_OUTPUT(Makefile:Makefile.in testsuite/Makefile:testsuite/Makefile.in)
|