Refactor project structure by moving core files to corelogic and updating build configurations
This commit is contained in:
+8
-8
@@ -1,22 +1,22 @@
|
||||
AC_INIT([The Harriman-Peikoff Project],[0.00],[latentprion@gmail.com],[harikoff],[github.com/latentprion/harikoff])
|
||||
AC_INIT([The Harriman-Peikoff Project], [0.00], [latentprion@gmail.com],
|
||||
[harikoff], [github.com/latentprion/harikoff])
|
||||
|
||||
# Safety checks in case user overwritten --srcdir
|
||||
AC_CONFIG_SRCDIR(core/main.cpp)
|
||||
AC_CONFIG_SRCDIR(corelogic/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])
|
||||
|
||||
# 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])
|
||||
# Init automake, and specify this program does not follow the gnu coding standards.
|
||||
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
|
||||
|
||||
AC_PROG_CC
|
||||
AC_PROG_CXX
|
||||
AC_PROG_RANLIB
|
||||
AM_PROG_AR
|
||||
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
||||
AC_CONFIG_FILES([Makefile core/Makefile])
|
||||
AC_CONFIG_FILES([Makefile corelogic/Makefile])
|
||||
AC_OUTPUT
|
||||
|
||||
Reference in New Issue
Block a user