From 437bca524595d1007f37988e862db8bfeff329b0 Mon Sep 17 00:00:00 2001 From: marha Date: Wed, 29 Jul 2009 09:17:47 +0000 Subject: Added mhmake GNU make compatible (with extensions) make utility. --- tools/mhmake/configure.in | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tools/mhmake/configure.in (limited to 'tools/mhmake/configure.in') diff --git a/tools/mhmake/configure.in b/tools/mhmake/configure.in new file mode 100644 index 000000000..ca6a5389b --- /dev/null +++ b/tools/mhmake/configure.in @@ -0,0 +1,20 @@ +AC_INIT(configure.in) + +AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(mhmake, 0.1) + +AC_ARG_ENABLE(debug, +[ --enable-debug Turn on debugging], +[case "${enableval}" in + yes) debug=true ;; + full) debug=true ;; + no) debug=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;; +esac],[debug=false]) +AM_CONDITIONAL(DEBUG, test x$debug = xtrue) + +AC_LANG_CPLUSPLUS +AC_PROG_CXX +AC_PROG_CC + +AC_OUTPUT(Makefile src/Makefile) -- cgit v1.2.3