source: trunk/libs/newlib/src/libgloss/hp74x/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: 811 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.59)
3AC_INIT(crt0.s)
4
5if test "$srcdir" = "." ; then
6  mdir=`echo "${with_multisubdir}/" \
7    | sed -e 's,\([[^/]][[^/]]*\),..,g' -e 's,^/$,,'`
8  AC_CONFIG_AUX_DIR(${mdir}../../..)
9else
10  AC_CONFIG_AUX_DIR(${srcdir}/../..)
11fi
12
13AC_PROG_INSTALL
14
15LIB_AC_PROG_CC
16AS=${AS-as}
17AC_SUBST(AS)
18AR=${AR-ar}
19AC_SUBST(AR)
20LD=${LD-ld}
21AC_SUBST(LD)
22AC_PROG_RANLIB
23LIB_AM_PROG_AS
24
25host_makefile_frag=${srcdir}/../config/default.mh
26
27dnl We have to assign the same value to other variables because autoconf
28dnl doesn't provide a mechanism to substitute a replacement keyword with
29dnl arbitrary data or pathnames.
30dnl
31host_makefile_frag_path=$host_makefile_frag
32AC_SUBST(host_makefile_frag_path)
33AC_SUBST_FILE(host_makefile_frag)
34
35AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.