URL
                    https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
                
            Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [configure.in] - Rev 56
Go to most recent revision | Compare with Previous | Blame | View Log
dnl This is the newlib/libc configure.in file.dnl Process this file with autoconf to produce a configure script.AC_PREREQ(2.5)AC_INIT(sys.tex)dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.AC_CONFIG_AUX_DIR(../..)NEWLIB_CONFIGURE(..)AC_CONFIG_SUBDIRS(machine sys)CRT0=if test -n "${sys_dir}"; thenCRT0=crt0.ofiAC_SUBST(CRT0)dnl For each directory which we may or may not want, we define a namednl for the library and an automake conditional for whether we shoulddnl build the library.LIBC_POSIX_LIB=if test -n "${posix_dir}"; thenLIBC_POSIX_LIB=${posix_dir}/lib.afiAC_SUBST(LIBC_POSIX_LIB)AM_CONDITIONAL(HAVE_POSIX_DIR, test x${posix_dir} != x)LIBC_SIGNAL_LIB=LIBC_SIGNAL_DEF=if test -n "${signal_dir}"; thenLIBC_SIGNAL_LIB=${signal_dir}/lib.aLIBC_SIGNAL_DEF=${signal_dir}/stmp-deffiAC_SUBST(LIBC_SIGNAL_LIB)AC_SUBST(LIBC_SIGNAL_DEF)AM_CONDITIONAL(HAVE_SIGNAL_DIR, test x${signal_dir} != x)LIBC_SYSCALL_LIB=if test -n "${syscall_dir}"; thenLIBC_SYSCALL_LIB=${syscall_dir}/lib.afiAC_SUBST(LIBC_SYSCALL_LIB)AM_CONDITIONAL(HAVE_SYSCALL_DIR, test x${syscall_dir} != x)LIBC_UNIX_LIB=if test -n "${unix_dir}"; thenLIBC_UNIX_LIB=${unix_dir}/lib.afiAC_SUBST(LIBC_UNIX_LIB)AM_CONDITIONAL(HAVE_UNIX_DIR, test x${unix_dir} != x)dnl We always recur into sys and machine, and let them decide what todnl do. However, we do need to know whether they will produce a library.LIBC_SYS_LIB=if test -n "${sys_dir}"; thenLIBC_SYS_LIB=sys/lib.afiAC_SUBST(LIBC_SYS_LIB)LIBC_MACHINE_LIB=if test -n "${machine_dir}"; thenLIBC_MACHINE_LIB=machine/lib.afiAC_SUBST(LIBC_MACHINE_LIB)AC_OUTPUT(Makefile ctype/Makefile errno/Makefile locale/Makefile misc/Makefile reent/Makefile stdio/Makefile stdlib/Makefile string/Makefile time/Makefile posix/Makefile signal/Makefile syscalls/Makefile unix/Makefile)
Go to most recent revision | Compare with Previous | Blame | View Log

