2024-08-26 14:25:26 +02:00
|
|
|
# Copyright (C) 2022-2024 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
2022-11-22 20:30:28 +01:00
|
|
|
#
|
|
|
|
# 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 <https://www.gnu.org/licenses/>.
|
2024-11-24 18:10:47 +01:00
|
|
|
SENTINEL =
|
|
|
|
|
2024-05-19 13:12:53 +02:00
|
|
|
.PHONY: all build check help publish serve website.tar.gz
|
2022-11-22 20:30:28 +01:00
|
|
|
|
2024-05-19 13:25:36 +02:00
|
|
|
all: help
|
2022-11-22 20:48:57 +01:00
|
|
|
|
2023-03-22 03:04:30 +01:00
|
|
|
BUILD_OPTIONS :=
|
2023-11-08 03:40:27 +01:00
|
|
|
GUIX_SHARE_OPTIONS := --share=`realpath ../`
|
2023-04-01 12:38:02 +02:00
|
|
|
|
2023-04-03 02:47:23 +02:00
|
|
|
if WANT_UNTITLED_PATH
|
|
|
|
BUILD_OPTIONS += --with-untitled-path $(UNTITLED_PATH)
|
|
|
|
GUIX_SHARE_OPTIONS += --share=`realpath $(UNTITLED_PATH)`
|
|
|
|
endif
|
|
|
|
|
2024-06-03 21:16:01 +02:00
|
|
|
index.html: index.html.tmpl
|
|
|
|
sed -e "s#WEBSITE_PREFIX#$(WEBSITE_PREFIX)#g" "$^" > "$@"
|
|
|
|
|
2024-11-23 17:04:05 +01:00
|
|
|
GUIX_SHELL_CONTAINER = guix time-machine \
|
2024-11-11 22:07:41 +01:00
|
|
|
--commit=$(GUIX_REVISION) \
|
|
|
|
-- \
|
|
|
|
shell \
|
2024-11-23 17:04:05 +01:00
|
|
|
--system=i686-linux \
|
|
|
|
--container \
|
2024-11-23 17:04:07 +01:00
|
|
|
`guix repl force-bordeaux-substitute.scm force` \
|
2024-11-23 17:04:05 +01:00
|
|
|
$(SENTINEL)
|
|
|
|
|
|
|
|
if WANT_GUIX
|
|
|
|
DOT_CMD = $(GUIX_SHELL_CONTAINER) \
|
|
|
|
graphviz \
|
2024-11-11 22:07:41 +01:00
|
|
|
-- \
|
2024-11-23 17:04:04 +01:00
|
|
|
dot
|
2024-11-11 22:07:41 +01:00
|
|
|
else
|
2024-11-23 17:04:04 +01:00
|
|
|
DOT_CMD = dot
|
2024-11-11 22:07:41 +01:00
|
|
|
endif
|
2024-08-26 14:25:27 +02:00
|
|
|
|
2024-11-23 17:04:04 +01:00
|
|
|
history/git-history.jpg: history/git-history.dot
|
|
|
|
$(DOT_CMD) -T jpg history/git-history.dot > "$@"
|
|
|
|
|
2024-09-06 18:15:39 +02:00
|
|
|
# We need force the regeneration of the page because if only the git
|
|
|
|
# commit changes, there is no way to know about it. In addition the
|
|
|
|
# full website is regenerated each time the build target is run, so
|
|
|
|
# generating one more page has insignificant performance impact.
|
|
|
|
.PHONY: pages/footer-git-commit.include
|
|
|
|
pages/footer-git-commit.include:
|
|
|
|
rm -f $@
|
|
|
|
|
|
|
|
printf "This page was generated with %s from the commit %s\n" \
|
|
|
|
"[Untitled](https://untitled.vimuser.org/)" \
|
|
|
|
"`git show --no-patch HEAD --pretty=\"%h\"`" \
|
|
|
|
>> $@
|
|
|
|
|
|
|
|
printf "(\"%s\").\n" \
|
|
|
|
"`git show --no-patch HEAD --pretty=\"%s\"`" \
|
|
|
|
>> $@
|
|
|
|
|
|
|
|
printf "\n" >> $@
|
|
|
|
|
|
|
|
pages/footer.include: pages/footer.include.tmpl pages/footer-git-commit.include
|
|
|
|
cat \
|
|
|
|
pages/footer.include.tmpl \
|
|
|
|
pages/footer-git-commit.include \
|
|
|
|
> $@
|
|
|
|
|
2024-06-03 21:16:01 +02:00
|
|
|
site.cfg: site.cfg.tmpl
|
|
|
|
sed -e "s#WEBSITE_PREFIX#$(WEBSITE_PREFIX)#g" "$^" > "$@"
|
|
|
|
|
2024-11-24 18:10:47 +01:00
|
|
|
if WANT_GUIX
|
|
|
|
# We can't use MAKEINFO as it's defined in configure.ac
|
|
|
|
MAKEINFO_CMD = $(GUIX_SHELL_CONTAINER) \
|
|
|
|
--expose=`realpath ../manual/` \
|
|
|
|
coreutils \
|
|
|
|
diffutils \
|
|
|
|
gcc-toolchain \
|
|
|
|
grep \
|
|
|
|
sed \
|
|
|
|
tar \
|
|
|
|
texinfo \
|
|
|
|
texlive-bin \
|
|
|
|
texlive-cm \
|
|
|
|
texlive-epsf \
|
|
|
|
texlive-kpathsea \
|
|
|
|
texlive-latex-base \
|
|
|
|
texlive-metafont \
|
|
|
|
texlive-tex-texinfo \
|
|
|
|
-- \
|
|
|
|
makeinfo
|
|
|
|
else
|
|
|
|
MAKEINFO_CMD = makeinfo
|
|
|
|
endif
|
|
|
|
|
|
|
|
../manual/version.texi: Makefile
|
|
|
|
@if git --no-pager name-rev --tags HEAD | awk '{print $$2}' | grep -q '^tags/' ; then \
|
|
|
|
printf '@set VERSION %s' \
|
|
|
|
`git describe --tag HEAD` > $@ ; \
|
|
|
|
else \
|
|
|
|
printf '@set VERSION %s' \
|
|
|
|
`git --no-pager show --no-patch HEAD --pretty="%h"` > $@ ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If we use GNUBOOT_MANUAL_DEPENDENCIES, autoreconf 2.71 will output the
|
|
|
|
# following warning:
|
|
|
|
# Makefile.am:115: warning: variable 'GNUBOOT_MANUAL_DEPENDENCIES' is
|
|
|
|
# defined but no program or
|
|
|
|
# Makefile.am:115: library has 'GNUBOOT_MANUAL' as canonical name (possible
|
|
|
|
# typo)
|
|
|
|
# Some other variable names are also reserved by automake such as
|
|
|
|
# *_SOURCES, so we used GNUBOOT_MANUAL_FILES to avoid conflicts or
|
|
|
|
# potentially unintended side effects.
|
|
|
|
GNUBOOT_MANUAL_FILES = \
|
|
|
|
../manual/fdl-1.3.texi \
|
|
|
|
../manual/gnuboot.texi \
|
|
|
|
../manual/images/SOIC-16.png \
|
|
|
|
../manual/version.texi \
|
|
|
|
Makefile \
|
|
|
|
$(SENTINEL)
|
|
|
|
|
|
|
|
pages/manual/gnuboot.%: $(GNUBOOT_MANUAL_FILES)
|
|
|
|
mkdir -p `dirname $@`
|
|
|
|
$(MAKEINFO_CMD) \
|
|
|
|
--$(subst pages/manual/gnuboot.,,$@) \
|
|
|
|
--no-split \
|
|
|
|
-o $@ \
|
|
|
|
../manual/gnuboot.texi
|
|
|
|
|
|
|
|
if WANT_GUIX
|
|
|
|
GM_CMD = $(GUIX_SHELL_CONTAINER) \
|
|
|
|
--expose=`realpath ../manual/` \
|
|
|
|
graphicsmagick \
|
|
|
|
-- \
|
|
|
|
gm
|
|
|
|
else
|
|
|
|
GM_CMD = gm
|
|
|
|
endif
|
|
|
|
|
|
|
|
pages/manual/images/SOIC-16.png: ../manual/SOIC-16.jpeg
|
|
|
|
mkdir -p `dirname $@`
|
|
|
|
$(GM_CMD) convert $< $@
|
|
|
|
|
|
|
|
# In the manual we include SOIC-16.png as @image{images/SOIC-16,
|
|
|
|
# [...]}. This was done to make it easier to later on package the
|
|
|
|
# manual in FHS distributions like Trisquel as the info manual ends up
|
|
|
|
# in /usr/share/info/ while its images are expected to go in
|
|
|
|
# /usr/share/info/images instead. But then the manual also
|
|
|
|
# needs to be able to find its images during the compilation.
|
|
|
|
../manual/images/SOIC-16.png: pages/manual/images/SOIC-16.png
|
|
|
|
mkdir -p `dirname $@`
|
|
|
|
install -m 644 $< $@
|
|
|
|
|
|
|
|
pages/manual/images/SOIC-16.jpeg: ../manual/SOIC-16.jpeg
|
|
|
|
mkdir -p `dirname $@`
|
|
|
|
install -m 644 $< $@
|
|
|
|
|
|
|
|
GNUBOOT_MANUAL = \
|
|
|
|
pages/manual/images/SOIC-16.jpeg \
|
|
|
|
pages/manual/images/SOIC-16.png \
|
|
|
|
pages/manual/gnuboot.html \
|
|
|
|
pages/manual/gnuboot.pdf \
|
|
|
|
$(SENTINEL)
|
|
|
|
|
2023-04-08 13:15:52 +02:00
|
|
|
if WANT_GUIX
|
2024-11-23 17:04:05 +01:00
|
|
|
BUILD_SH_CMD = $(GUIX_SHELL_CONTAINER) \
|
|
|
|
--network \
|
|
|
|
--emulate-fhs \
|
|
|
|
$(GUIX_SHARE_OPTIONS) \
|
|
|
|
bash \
|
|
|
|
coreutils \
|
|
|
|
findutils \
|
|
|
|
git \
|
|
|
|
grep \
|
|
|
|
nss-certs \
|
|
|
|
pandoc \
|
|
|
|
sed \
|
|
|
|
-- \
|
|
|
|
./build.sh
|
2023-04-08 13:15:52 +02:00
|
|
|
else
|
2024-11-23 17:04:04 +01:00
|
|
|
BUILD_SH_CMD = ./build.sh
|
2023-04-08 13:15:52 +02:00
|
|
|
endif
|
2022-11-22 20:48:57 +01:00
|
|
|
|
2024-11-24 18:10:47 +01:00
|
|
|
build: site.cfg pages/footer.include $(GNUBOOT_MANUAL)
|
2024-11-23 17:04:04 +01:00
|
|
|
$(BUILD_SH_CMD) $(BUILD_OPTIONS)
|
2024-05-19 15:45:47 +02:00
|
|
|
|
2024-11-23 17:04:04 +01:00
|
|
|
if WANT_GUIX
|
2024-11-23 17:04:05 +01:00
|
|
|
CHECK_SH_CMD = $(GUIX_SHELL_CONTAINER) \
|
2024-11-23 17:04:04 +01:00
|
|
|
--network \
|
|
|
|
--emulate-fhs \
|
|
|
|
bash \
|
|
|
|
coreutils \
|
|
|
|
findutils \
|
|
|
|
grep \
|
|
|
|
gzip \
|
|
|
|
sed \
|
|
|
|
tar \
|
|
|
|
-- \
|
|
|
|
./check.sh
|
2023-04-08 13:15:52 +02:00
|
|
|
else
|
2024-11-23 17:04:04 +01:00
|
|
|
CHECK_SH_CMD = ./check.sh
|
|
|
|
endif
|
|
|
|
|
2024-08-26 14:25:27 +02:00
|
|
|
check: build website.tar.gz index.html history/git-history.jpg
|
2024-05-19 15:45:47 +02:00
|
|
|
rm -rf site/
|
2024-06-03 21:16:01 +02:00
|
|
|
mkdir -p site/$(WEBSITE_PREFIX)
|
|
|
|
tar xf website.tar.gz -C site/$(WEBSITE_PREFIX)
|
2024-11-23 17:04:04 +01:00
|
|
|
$(CHECK_SH_CMD) --website-prefix $(WEBSITE_PREFIX) \
|
|
|
|
--directory site
|
|
|
|
$(CHECK_SH_CMD) --website-prefix $(WEBSITE_PREFIX) \
|
|
|
|
--tarball website.tar.gz
|
2023-04-02 01:31:29 +02:00
|
|
|
|
2022-11-22 21:17:24 +01:00
|
|
|
help:
|
2024-05-19 13:12:53 +02:00
|
|
|
@printf "%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n" \
|
2022-11-22 21:17:24 +01:00
|
|
|
"Available commands:" \
|
|
|
|
"help # Print this help" \
|
2024-05-19 13:12:53 +02:00
|
|
|
"build # Build the website" \
|
|
|
|
"serve # run lighttpd on localhost:$(LIGHTTPD_PORT)" \
|
2024-06-03 21:16:01 +02:00
|
|
|
"publish # Publish the website to https://gnu.org/$(WEBSITE_PREFIX)" \
|
2023-04-02 01:31:29 +02:00
|
|
|
"check # Run automatic tests" \
|
2022-11-22 21:17:24 +01:00
|
|
|
"website.tar.gz # Create a tarball of the website"
|
|
|
|
|
2023-04-08 13:15:52 +02:00
|
|
|
if WANT_GUIX
|
2024-11-23 17:04:05 +01:00
|
|
|
SERVE_SH_CMD = $(GUIX_SHELL_CONTAINER) \
|
2024-11-23 17:04:04 +01:00
|
|
|
--network \
|
|
|
|
--emulate-fhs \
|
|
|
|
bash \
|
|
|
|
coreutils \
|
|
|
|
gzip \
|
|
|
|
lighttpd \
|
|
|
|
sed \
|
|
|
|
tar \
|
|
|
|
-- \
|
|
|
|
./serve.sh
|
2023-04-08 13:58:15 +02:00
|
|
|
else
|
2024-11-23 17:04:04 +01:00
|
|
|
SERVE_SH_CMD = ./serve.sh
|
|
|
|
endif
|
|
|
|
|
|
|
|
if ! WANT_LIGHTTPD
|
2024-05-19 13:12:53 +02:00
|
|
|
serve:
|
2023-04-08 13:58:15 +02:00
|
|
|
@printf "%s %s\n" \
|
2024-11-11 22:07:53 +01:00
|
|
|
"The $@ target is disabled." \
|
2023-04-08 13:58:15 +02:00
|
|
|
"To enable it, run './configure --enable-lighttpd'."
|
|
|
|
@false
|
2024-11-23 17:04:04 +01:00
|
|
|
else
|
|
|
|
serve: website.tar.gz
|
|
|
|
$(SERVE_SH_CMD) --website-prefix $(WEBSITE_PREFIX) \
|
|
|
|
website.tar.gz $(LIGHTTPD_PORT)
|
2023-04-08 13:15:52 +02:00
|
|
|
endif
|
2022-11-23 01:39:34 +01:00
|
|
|
|
2024-11-11 22:07:51 +01:00
|
|
|
RSYNC_OPTIONS := -av --progress --delete
|
2024-05-19 13:12:53 +02:00
|
|
|
publish: website.tar.gz
|
2023-10-15 16:38:44 +02:00
|
|
|
rm -rf deploy
|
|
|
|
mkdir -p deploy
|
|
|
|
tar xf website.tar.gz -C deploy
|
|
|
|
rsync $(RSYNC_OPTIONS) \
|
|
|
|
deploy/ \
|
|
|
|
$(RSYNC_DESTINATION)/
|
2022-11-22 21:17:24 +01:00
|
|
|
|
2024-08-26 14:25:27 +02:00
|
|
|
website.tar.gz: build index.html history/git-history.jpg
|
2022-11-22 20:48:57 +01:00
|
|
|
tar \
|
2022-11-23 01:39:34 +01:00
|
|
|
--exclude-vcs \
|
2022-11-22 20:48:57 +01:00
|
|
|
--format=gnu \
|
|
|
|
--owner=0 --group=0 --numeric-owner \
|
|
|
|
--sort=name \
|
|
|
|
-czf \
|
|
|
|
website.tar.gz \
|
2023-08-17 01:25:02 +02:00
|
|
|
untitled/www/lbwww/site \
|
|
|
|
index.html \
|
2024-08-26 14:25:27 +02:00
|
|
|
history/git-history.dot \
|
|
|
|
history/git-history.jpg \
|
|
|
|
--transform="s#untitled/www/lbwww/site#web#" \
|
|
|
|
--transform="s#^history/#web/history/#"
|