]> git.ipfire.org Git - people/ms/firmware-update.git/blob - Makefile.am
Add message to get consent from user
[people/ms/firmware-update.git] / Makefile.am
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 AM_MAKEFLAGS = --no-print-directory
22
23 # Remove target if the command fails
24 .DELETE_ON_ERROR:
25
26 CLEANFILES =
27 DISTCLEANFILES =
28 EXTRA_DIST =
29
30 firmwaredir=/lib/firmware
31
32 sbin_SCRIPTS = \
33 src/firmware-update
34
35 EXTRA_DIST += \
36 src/firmware-update.in
37
38 CLEANFILES += \
39 src/firmware-update
40
41 # ------------------------------------------------------------------------------
42
43 substitutions = \
44 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
45 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
46 '|configsdir=$(configsdir)|' \
47 '|firmwaredir=$(firmwaredir)|' \
48 '|sbindir=$(sbindir)|'
49
50 SED_PROCESS = \
51 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
52 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
53 < $< > $@
54
55 src/%: src/%.in Makefile
56 $(SED_PROCESS)