forked from BSzili/libnix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.in
More file actions
32 lines (27 loc) · 842 Bytes
/
configure.in
File metadata and controls
32 lines (27 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
dnl Process this file with autoconf to produce a configure script.
AC_INIT()
AC_ARG_WITH(cross-host,
[ --with-cross-host=HOST Configuring with a cross compiler])
AC_PROG_CC(CC, gcc, c1 cc)
AC_PROG_RANLIB
AC_CHECK_PROG(AR, ar, ar, ar)
AC_CHECK_PROG(AS, as, as, as)
AC_PROG_CPP(CC, gcc, c1 cc)
AC_PROG_AWK
AC_PROG_RANLIB(RANLIB, ranlib)
AC_PROG_INSTALL
AC_OUTPUT(Makefile
sources/Makefile
sources/amiga/Makefile
sources/math/Makefile
sources/misc/Makefile
sources/nix/Makefile
sources/nix13/Makefile
sources/nix20/Makefile
sources/nixmain/Makefile
sources/nix_main/Makefile
sources/socket/Makefile
sources/stack/Makefile
sources/startup/Makefile
sources/stubs/Makefile
examples/Makefile)