mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4259 1feff8c3-07ed-0310-ac33-dd36852eb9cd
19 lines
458 B
Plaintext
19 lines
458 B
Plaintext
# Prelude.
|
|
AC_INIT([IPhreeqc], [1.0], [charlton@usgs.gov])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CXX
|
|
AC_PROG_F77
|
|
AC_F77_LIBRARY_LDFLAGS
|
|
|
|
# Disable shared library building by default (use --enable-shared to enable)
|
|
AC_DISABLE_SHARED
|
|
AC_PROG_LIBTOOL
|
|
|
|
# Output files.
|
|
AC_CONFIG_FILES([Makefile src/Makefile test/Makefile testcpp/Makefile])
|
|
AC_OUTPUT
|