aboutsummaryrefslogtreecommitdiff
path: root/tools/mhmake/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mhmake/configure.in')
-rw-r--r--tools/mhmake/configure.in20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/mhmake/configure.in b/tools/mhmake/configure.in
deleted file mode 100644
index ca6a5389b..000000000
--- a/tools/mhmake/configure.in
+++ /dev/null
@@ -1,20 +0,0 @@
-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)