mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-07 11:17:50 -04:00
23 lines
531 B
Plaintext
23 lines
531 B
Plaintext
AC_INIT(Makefile.am)
|
|
#AC_PREREQ(2.50)
|
|
AC_CONFIG_AUX_DIR(config)
|
|
AM_CONFIG_HEADER(config/config.h)
|
|
AM_INIT_AUTOMAKE(tclap,1.0.5)
|
|
AC_PROG_CXX
|
|
AC_CXX_HAVE_SSTREAM
|
|
AC_CXX_HAVE_STRSTREAM
|
|
AC_CHECK_PROG(DOT,dot,YES,NO)
|
|
AC_PROG_RANLIB
|
|
AC_PROG_INSTALL
|
|
BB_ENABLE_DOXYGEN
|
|
AC_OUTPUT([ Makefile \
|
|
examples/Makefile \
|
|
include/Makefile \
|
|
include/tclap/Makefile \
|
|
docs/Makefile \
|
|
docs/Doxyfile \
|
|
msc/Makefile \
|
|
msc/examples/Makefile \
|
|
tests/Makefile], \
|
|
[chmod a+x $ac_top_srcdir/tests/*.sh])
|