]> git.ipfire.org Git - people/ms/firmware-update.git/blame - configure.ac
Bump version to 20210107
[people/ms/firmware-update.git] / configure.ac
CommitLineData
82068881
MT
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
21AC_PREREQ([2.64])
22
23AC_INIT([firmware-update],
1319520f 24 [20210107],
82068881
MT
25 [michael.tremer@ipfire.org],
26 [firmware-update],
27 [https://git.ipfire.org/?p=people/ms/firmware-update.git;a=summary])
28
29AC_CONFIG_AUX_DIR([build-aux])
30
31AC_PREFIX_DEFAULT([/usr])
32
33AM_INIT_AUTOMAKE([
34 foreign
35 1.11
36 -Wall
37 -Wno-portability
38 silent-rules
39 tar-pax
40 subdir-objects
41])
42AM_SILENT_RULES([yes])
43
44AC_PROG_MKDIR_P
45AC_PROG_SED
46
47# ------------------------------------------------------------------------------
48
49AC_CONFIG_FILES([
50 Makefile
51])
52
53AC_OUTPUT
54AC_MSG_RESULT([
55 ${PACKAGE_NAME} ${VERSION}
56
57 prefix: ${prefix}
58])