aboutsummaryrefslogtreecommitdiff
path: root/nxdialog/configure.ac
blob: bc8e81b84cbee35b853e5f28229abcbb6752a665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
dnl ***************************************************************************
dnl *** configure.ac for nxdialog                                           ***
dnl ***************************************************************************

m4_define([nxdialog_version], m4_esyscmd([tr -d '\n' < VERSION]))

# Initialize Autoconf
AC_PREREQ(2.60)

AC_INIT([NX Dialog], [nxdialog_version], [https://github.com/ArcticaProject/nx-libs/issues])
AC_CONFIG_AUX_DIR([build-aux])
AC_PREFIX_DEFAULT([/usr/local])

AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-bzip2])

AC_CONFIG_FILES([
Makefile
bin/Makefile
man/Makefile
])

AC_OUTPUT