source: trunk/libs/newlib/src/newlib/libc/machine/sh/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: 522 bytes
Line 
1dnl This is the newlib/libc/machine/sh 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([asm.h])
7
8dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
9AC_CONFIG_AUX_DIR(../../../..)
10
11AC_NO_EXECUTABLES
12
13NEWLIB_CONFIGURE(../../..)
14
15AC_EGREP_CPP([sh5], [
16#if __SH5__
17  sh5
18#endif
19], [have_sh64=yes], [have_sh64=no])
20AM_CONDITIONAL(SH64, [test $have_sh64 = yes])
21
22AC_CONFIG_FILES([Makefile])
23AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.