summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorfche <fche>2005-02-12 02:28:43 +0000
committerfche <fche>2005-02-12 02:28:43 +0000
commit2f1a1aead38c1dcd329a694dd8d3290b37320466 (patch)
tree3700f34d81fadb3b3f2cf850cce7eaec73d70659 /configure.ac
downloadsystemtap-steved-2f1a1aead38c1dcd329a694dd8d3290b37320466.tar.gz
systemtap-steved-2f1a1aead38c1dcd329a694dd8d3290b37320466.tar.xz
systemtap-steved-2f1a1aead38c1dcd329a694dd8d3290b37320466.zip
* parser prototype snapshot
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac27
1 files changed, 27 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 00000000..0ffaa19f
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,27 @@
+dnl configure.ac --- autoconf input file for systemtap
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT([systemtap], 1.0, systemtap@sources.redhat.com, systemtap)
+
+AC_PREREQ(2.59)
+AM_INIT_AUTOMAKE
+AM_MAINTAINER_MODE
+
+AC_PROG_LN_S
+AC_PROG_CC
+AC_PROG_CXX
+AC_PROG_CPP
+AM_PROG_CC_STDC
+AM_C_PROTOTYPES
+AC_LANG_CPLUSPLUS
+AC_PROG_RANLIB
+AC_OBJEXT
+AC_EXEEXT
+AC_PROG_INSTALL
+AC_PROG_MAKE_SET
+AC_SUBST(CFLAGS)
+AC_SUBST(CXXFLAGS)
+
+AC_CONFIG_HEADERS([config.h:config.in])
+AC_CONFIG_FILES(Makefile)
+AC_OUTPUT