source: rtems/c/src/exec/posix/configure.in @ aaf6063

4.104.114.84.95
Last change on this file since aaf6063 was 53c3a2c6, checked in by Joel Sherrill <joel.sherrill@…>, on 05/07/01 at 13:16:57

2001-04-27 Ralf Corsepius <corsepiu@…>

  • configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(optman)
7RTEMS_TOP(../../../..)
8AC_CONFIG_AUX_DIR(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-exec-posix,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_POSIX
16RTEMS_ENABLE_INLINES
17
18RTEMS_ENV_RTEMSCPU
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_PROJECT_ROOT
24
25RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
26RTEMS_CANONICALIZE_TOOLS
27
28RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
29RTEMS_CHECK_POSIX_API(RTEMS_BSP)
30
31# If RTEMS macros are enabled, then use them.  Otherwise, use inlines.
32if test "$RTEMS_USE_MACROS" = "yes"; then
33  INLINEdir="macros"
34else
35  INLINEdir="inline"
36fi
37AM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" )
38AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" )
39AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes" )
40
41## Needed when using automake for libs/rels
42RTEMS_CHECK_NEWLIB
43
44## Refuse to build if bsp does not support libposix
45if test "$HAS_POSIX_API" != "yes"; then
46AC_MSG_ERROR([BSP $RTEMS_BSP does not support libposix])
47fi
48
49AM_CONFIG_HEADER(src/config.h)
50
51# Explicitly list all Makefiles here
52AC_OUTPUT(
53Makefile
54src/Makefile
55include/Makefile
56include/sys/Makefile
57include/rtems/Makefile
58include/rtems/posix/Makefile
59optman/Makefile
60inline/Makefile
61inline/rtems/Makefile
62inline/rtems/posix/Makefile
63macros/Makefile
64macros/rtems/Makefile
65macros/rtems/posix/Makefile
66)
Note: See TracBrowser for help on using the repository browser.