mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-12-08 14:58:56 +00:00
From now on nix13 or nix20 will have to be provided explicitely to linker, depending on which Kickstart your application should run on.
30 lines
697 B
Plaintext
30 lines
697 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT()
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_RANLIB
|
|
AC_CHECK_PROG(AR, ar, ar, ar)
|
|
AC_CHECK_PROG(AS, as, as, as)
|
|
|
|
AC_PROG_CPP
|
|
AC_PROG_AWK
|
|
AC_PROG_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)
|