Files
salmanoff/configure.ac
T

26 lines
484 B
Plaintext
Raw Normal View History

2025-01-04 18:18:17 -04:00
AC_INIT([Harriman-Peikoff Project], [0.00.000],
2025-01-02 17:01:27 -04:00
[latentprion@gmail.com],
[harikoff],
[github.com/latentprion/harikoff])
2024-09-08 01:04:41 +10:00
2025-01-04 07:33:15 -04:00
AC_CONFIG_SRCDIR([hcore/mind.cpp])
2025-01-02 17:01:27 -04:00
AC_CONFIG_AUX_DIR([autotools-aux])
2024-09-04 14:09:29 +10:00
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
2024-09-04 14:09:29 +10:00
AC_PROG_CC
AC_PROG_CXX
AC_PROG_RANLIB
AM_PROG_AR
2024-09-04 14:09:29 +10:00
2025-01-04 07:33:15 -04:00
AM_CPPFLAGS=m4_normalize(["-I\"\$(abs_top_srcdir)/include\""])
2025-01-02 17:01:27 -04:00
2025-01-02 18:04:17 -04:00
AC_SUBST([AM_CPPFLAGS])
2025-01-02 17:01:27 -04:00
AC_CONFIG_HEADERS([include/config.h])
AC_CONFIG_FILES([
2025-01-04 07:33:15 -04:00
Makefile hcore/Makefile
2025-01-02 17:01:27 -04:00
])
2024-09-08 01:04:41 +10:00
2024-09-04 14:09:29 +10:00
AC_OUTPUT