mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-12-27 17:29:16 +00:00
75 lines
1.6 KiB
Plaintext
75 lines
1.6 KiB
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
AC_INIT(epple2, v1.0.6)
|
|
AC_PREREQ(2.68)
|
|
|
|
AC_CONFIG_SRCDIR([src/apple2.cpp])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
AM_INIT_AUTOMAKE
|
|
|
|
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CXX
|
|
AC_LANG([C++])
|
|
AC_REQUIRE_CPP
|
|
AC_PROG_INSTALL
|
|
AC_PROG_MAKE_SET
|
|
AC_PROG_RANLIB
|
|
AC_PATH_PROGS([XA65],[xa65 xa])
|
|
if test "X$ac_cv_path_XA65" == X
|
|
then
|
|
AC_MSG_ERROR([Cannot find xa (xa65) 6502 cross assembler by Andre Fachat])
|
|
fi
|
|
AC_ARG_VAR([XA65],[path to xa (xa65) 6502 cross assembler by Andre Fachat])
|
|
|
|
AC_PATH_PROG([LDO65],[ldo65])
|
|
if test "X$ac_cv_path_LDO65" == X
|
|
then
|
|
AC_MSG_ERROR([Cannot find ldo65, from xa (xa65) 6502 cross assembler by Andre Fachat])
|
|
fi
|
|
AC_ARG_VAR([LDO65],[path to ldo65, from xa (xa65) 6502 cross assembler by Andre Fachat])
|
|
|
|
AC_PATH_PROG([RELOC65],[reloc65])
|
|
if test "X$ac_cv_path_RELOC65" == X
|
|
then
|
|
AC_MSG_ERROR([Cannot find reloc, from xa (xa65) 6502 cross assembler by Andre Fachat])
|
|
fi
|
|
AC_ARG_VAR([RELOC65],[path to reloc65, from xa (xa65) 6502 cross assembler by Andre Fachat])
|
|
|
|
AC_PATH_PROG([M4],[m4])
|
|
if test "X$ac_cv_path_M4" == X
|
|
then
|
|
AC_MSG_ERROR([Cannot find m4])
|
|
fi
|
|
AC_ARG_VAR([M4],[path to m4])
|
|
|
|
AC_PATH_PROG([MD5SUM],[md5sum])
|
|
AC_ARG_VAR([MD5SUM],[path to md5sum])
|
|
|
|
|
|
|
|
# Checks for libraries.
|
|
AC_CHECK_LIB([SDL2],[SDL_Init],,[AC_MSG_ERROR([cannot find libSDL2])])
|
|
|
|
|
|
|
|
# Checks for header files.
|
|
AC_HEADER_STDBOOL
|
|
AC_C_CONST
|
|
AC_C_INLINE
|
|
AC_TYPE_SIZE_T
|
|
|
|
|
|
|
|
# Checks for library functions.
|
|
AC_HEADER_STDC
|
|
AC_TYPE_SIGNAL
|
|
AC_CHECK_FUNCS([memset sqrt])
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile conf/Makefile rom/Makefile])
|
|
AC_OUTPUT
|