mirror of
https://git.savannah.gnu.org/git/gnuboot.git
synced 2025-01-13 19:06:47 +01:00
Denis 'GNUtoo' Carikli
da06a2df88
In the commit d68b4f8930
("Makefile: Add
logging.") I forgot to add the SHELL := $(shell which bash) line that
is mentionned in the commit to the Makefile.
So now the Makefile targets are actually broken:
$ make release
echo 'Makefile: running release target' >> make-1705163885.log
set -o pipefail ; ./build release src | tee -a make-1705163885.log
/bin/sh: 1: set: Illegal option -o pipefail
make: *** [Makefile:59: release] Error 2
Since 'SHELL := bash' also works on PureOS 10 and Trisquel 10, I'll
use that instead as it is more simple.
The path of bash is not hardcoded to respect users decisions to use
the bash they want, and also to work better with non-FHS
distributions.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
109 lines
3.7 KiB
Makefile
109 lines
3.7 KiB
Makefile
#
|
|
# Makefile for compatibility purposes
|
|
# You can use this, but it's recommended to run build system commands directly
|
|
#
|
|
# See docs/maintain/ and docs/git/ for information about the build system
|
|
#
|
|
# Copyright (C) 2020, 2021 Leah Rowe <info@minifree.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# For making pipefail work.
|
|
SHELL := bash
|
|
|
|
.PHONY: all check download modules ich9m-descriptors payloads roms release \
|
|
clean crossgcc-clean install-dependencies-ubuntu \
|
|
install-dependencies-pureos-10 install-dependencies-arch \
|
|
install-dependencies-void
|
|
|
|
LOG = make-$(shell date '+%s').log
|
|
|
|
all: roms
|
|
|
|
download:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
./download all 2>&1 | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
modules:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
./build module all 2>&1 | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
ich9m-descriptors:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
./build build descriptors | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
payloads:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build payload all | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
roms:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build boot roms all | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
release:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build release src | tee -a $(LOG)
|
|
set -o pipefail ; ./build release roms | tee -a $(LOG)
|
|
set -o pipefail ; ./build release website | tee -a $(LOG)
|
|
set -o pipefail ; ./build release gnuboot-source | tee -a $(LOG)
|
|
set -o pipefail ; ./build test release | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
clean:
|
|
./build clean cbutils
|
|
./build clean flashrom
|
|
./build clean ich9utils
|
|
./build clean payloads
|
|
./build clean seabios
|
|
./build clean grub
|
|
./build clean memtest86plus
|
|
./build clean rom_images
|
|
|
|
crossgcc-clean:
|
|
./build clean crossgcc
|
|
|
|
distclean:
|
|
./build distclean all
|
|
|
|
install-dependencies-ubuntu:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build dependencies trisquel-10 | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
install-dependencies-pureos-10:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build dependencies pureos-10 | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
install-dependencies-arch:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build dependencies arch | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
install-dependencies-void:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./build dependencies void | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|
|
|
|
check:
|
|
echo 'Makefile: running $@ target' >> $(LOG)
|
|
set -o pipefail ; ./tests/lint | tee -a $(LOG)
|
|
set -o pipefail ; ./tests/distclean | tee -a $(LOG)
|
|
set -o pipefail ; ./tests/targets 2>&1 | tee -a $(LOG)
|
|
@echo "[ OK ] Makefile: $@ target. See $(LOG) for the log."
|