]> git.ipfire.org Git - people/ms/firmware-update.git/blob - configure.ac
Initial commit
[people/ms/firmware-update.git] / configure.ac
1 ###############################################################################
2 # #
3 # firmware-update - IPFire Firmware Update Tool #
4 # Copyright (C) 2019 IPFire Development Team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 AC_PREREQ([2.64])
22
23 AC_INIT([firmware-update],
24 [20190329],
25 [michael.tremer@ipfire.org],
26 [firmware-update],
27 [https://git.ipfire.org/?p=people/ms/firmware-update.git;a=summary])
28
29 AC_CONFIG_AUX_DIR([build-aux])
30
31 AC_PREFIX_DEFAULT([/usr])
32
33 AM_INIT_AUTOMAKE([
34 foreign
35 1.11
36 -Wall
37 -Wno-portability
38 silent-rules
39 tar-pax
40 subdir-objects
41 ])
42 AM_SILENT_RULES([yes])
43
44 AC_PROG_MKDIR_P
45 AC_PROG_SED
46
47 # ------------------------------------------------------------------------------
48
49 AC_CONFIG_FILES([
50 Makefile
51 ])
52
53 AC_OUTPUT
54 AC_MSG_RESULT([
55 ${PACKAGE_NAME} ${VERSION}
56
57 prefix: ${prefix}
58 ])