diff options
author | Andreas Eversberg <jolly@eversberg.eu> | 2016-03-01 18:40:38 +0100 |
---|---|---|
committer | Andreas Eversberg <jolly@eversberg.eu> | 2016-03-13 09:12:11 +0100 |
commit | 946c9ce10a92a29584d2e68e9c04fe63dcee7bdc (patch) | |
tree | f400ab2212900957e358ef236f07307492ecf2d9 /configure.ac |
initial git import
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..985513f --- /dev/null +++ b/configure.ac @@ -0,0 +1,36 @@ +dnl Process this file with autoconf to produce a configure script +AC_INIT([abcnetz], + m4_esyscmd([./git-version-gen .tarball-version]), + [authors@their.domains]) + +AM_INIT_AUTOMAKE([dist-bzip2]) + +AC_CONFIG_MACRO_DIR([m4]) + +dnl kernel style compile messages +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +dnl checks for programs +AC_PROG_MAKE_SET +AC_PROG_CC +AC_PROG_CXX +AC_PROG_INSTALL +LT_INIT + +dnl checks for header files +AC_HEADER_STDC + +dnl Checks for typedefs, structures and compiler characteristics + +AC_CANONICAL_HOST + +PKG_CHECK_MODULES(ALSA, alsa >= 1.0) + +AC_OUTPUT( + src/common/Makefile + src/anetz/Makefile + src/bnetz/Makefile + src/Makefile + Makefile) + + |