source: trunk/libs/newlib/src/newlib/libc/sys/phoenix/machine/configure.in @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 721 bytes
Line 
1dnl This is the newlib/libc/sys configure.in file.
2dnl Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT([newlib],[NEWLIB_VERSION])
6AC_CONFIG_SRCDIR([arm])
7
8dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
9AC_CONFIG_AUX_DIR(../../../../..)
10
11NEWLIB_CONFIGURE(../../../..)
12
13if test -n "${machine_dir}"; then
14  case ${machine_dir} in
15        arm) AC_CONFIG_SUBDIRS(arm) ;;
16        esirisc) AC_CONFIG_SUBDIRS(esirisc) ;;
17        i386) AC_CONFIG_SUBDIRS(i386) ;;
18        powerpc) AC_CONFIG_SUBDIRS(powerpc) ;;
19  esac;
20fi
21
22CRT0=
23if test -n "${machine_dir}"; then
24  CRT0=crt0.o
25fi
26AC_SUBST(CRT0)
27
28AM_CONDITIONAL(HAVE_MACHINE_DIR, test x${machine_dir} != x)
29
30AC_CONFIG_FILES([Makefile])
31AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.