Files
salmanoff/configure.ac
T

23 lines
641 B
Plaintext
Raw Normal View History

2024-09-08 01:04:41 +10:00
AC_INIT([The Harriman-Peikoff Project],[0.00],[latentprion@gmail.com],[harikoff],[github.com/latentprion/harikoff])
2024-09-04 14:09:29 +10:00
# Safety checks in case user overwritten --srcdir
AC_CONFIG_SRCDIR(core/main.cpp)
# Store the auxiliary build tools (e.g., install-sh, config.sub, config.guess)
# in this dir (build-aux)
AC_CONFIG_AUX_DIR([build-aux])
2024-11-22 14:49:03 +11:00
# Init automake, and specify this program follows the gnu coding standards.
AM_INIT_AUTOMAKE([-Wall -Werror])
# Add standard GNU files
AC_CONFIG_FILES([ChangeLog COPYING AUTHORS INSTALL README])
2024-09-04 14:09:29 +10:00
AC_PROG_CC
AC_PROG_CXX
2024-09-08 01:04:41 +10:00
AC_CONFIG_HEADERS([config.h])
2024-09-05 11:34:21 +10:00
AC_CONFIG_FILES([Makefile core/Makefile])
2024-09-04 14:09:29 +10:00
AC_OUTPUT