52fb6cdbfc
* configure (VERSION): Update to 0.22. (main): Likewise. * build-aux/GNUmakefile.in: Likewise. * configure.sh (VERSION): Likewise. * guix/git/mes.scm (mes, mes.git): Likewise.
403 lines
9.6 KiB
Makefile
403 lines
9.6 KiB
Makefile
# GNU Mes --- Maxwell Equations of Software
|
||
# Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||
#
|
||
# This file is part of GNU Mes.
|
||
#
|
||
# GNU Mes 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.
|
||
#
|
||
# GNU Mes 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 GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
||
|
||
SHELL=@BASH@
|
||
srcdest=@srcdest@
|
||
srcdir=@srcdir@
|
||
abs_top_srcdir=@abs_top_srcdir@
|
||
abs_top_builddir=@abs_top_builddir@
|
||
|
||
GUILE_FLAGS:=--no-auto-compile -L . -L module -C . -C module
|
||
|
||
cleaning-p:=$(filter clean%, $(MAKECMDGOALS))$(filter %clean, $(MAKECMDGOALS))
|
||
|
||
ifndef cleaning-p
|
||
include .config.make
|
||
ifneq ($(prefix),)
|
||
prefix-arg=--prefix=$(prefix)
|
||
endif
|
||
ifneq ($(build),)
|
||
build-arg=--build=$(build)
|
||
endif
|
||
ifneq ($(host),)
|
||
host-arg=--host=$(host)
|
||
endif
|
||
ifeq ($(mes_libc),system)
|
||
--with-system-libc=system
|
||
endif
|
||
.config.make:
|
||
${srcdir}/configure $(prefix_arg) $(host-arg) $(build-arg) $(with-system-libc)
|
||
endif
|
||
|
||
PHONY_TARGETS:=\
|
||
TAGS\
|
||
all-go\
|
||
all\
|
||
build\
|
||
check\
|
||
clean-go\
|
||
clean\
|
||
default\
|
||
dist\
|
||
distclean\
|
||
doc\
|
||
dvi\
|
||
gcc\
|
||
generate-ChangeLog\
|
||
help\
|
||
html\
|
||
info\
|
||
install-dvi\
|
||
install-html\
|
||
install-pdf\
|
||
install-ps\
|
||
install-strip\
|
||
install\
|
||
installcheck\
|
||
installdirs\
|
||
maintainer-clean\
|
||
man\
|
||
mes-gcc\
|
||
mes-tcc\
|
||
mes\
|
||
mostlyclean\
|
||
pdf\
|
||
ps\
|
||
sign-dist\
|
||
uninstall\
|
||
web\
|
||
#
|
||
|
||
.PHONY: $(PHONY_TARGETS)
|
||
|
||
default: all
|
||
|
||
all: doc
|
||
|
||
doc: build
|
||
|
||
build:
|
||
$(SHELL) build.sh
|
||
|
||
src/${program_prefix}mes: build
|
||
|
||
clean:
|
||
rm -f *.o *.s bin/mes bin/mes-gcc bin/mes-mescc
|
||
rm -f mes.{aux,cp,cps,fn,info,log,tmp,toc,vr,vrs}
|
||
rm -f .log build.log
|
||
rm -f 0exit-42 0hello-mes exit-42 body-exit-42 body-hello-mes hello-mes
|
||
rm -f build-aux/mes-snarf.go
|
||
rm -f module/mescc.go
|
||
rm -f module/mes/*.go module/mescc/*.go
|
||
rm -f module/mescc/i386/*.go
|
||
rm -f module/mescc/x86_64/*.go
|
||
rm -rf gcc-lib/*.o gcc-lib/*.s gcc-lib/*.a gcc-lib/*-mes
|
||
rm -f gcc-lib/libc+gnu.c
|
||
rm -f gcc-lib/.log gcc-lib/build.log
|
||
rm -rf mescc-lib/*.o mescc-lib/*.s mescc-lib/*.a mescc-lib/*-mes
|
||
rm -f mescc-lib/libc+gnu.c
|
||
rm -f mescc-lib/.log mescc-lib/build.log
|
||
rm -rf mescc/bin
|
||
rm -f scaffold/boot/*.log scaffold/boot/*.trs
|
||
rm -f test-suite.log tests/*.log tests/*.trs
|
||
rm -f scaffold/*.s scaffold/*.o
|
||
rm -f doc/images/gcc-mesboot-graph.{eps,pdf,png}
|
||
rm -f doc/mes.1 doc/mesar.1 doc/mescc.1
|
||
rm -f .config .config.E .config.o
|
||
|
||
distclean: clean
|
||
rm -f GNUmakefile bootstrap.sh build.sh check.sh install.sh uninstall.sh
|
||
rm -f include/mes/config.h
|
||
rm -f .config.make config.sh mescc-lib/config.sh gcc-lib/config.sh
|
||
rm -f scripts/mesar scripts/mescc scripts/mescc.scm scripts/m2-merge
|
||
rm -f TAGS
|
||
|
||
mostlyclean: clean
|
||
|
||
maintainer-clean: distclean
|
||
rm -f doc/mes.info
|
||
rm -f doc/version.texi
|
||
|
||
TAGS:
|
||
etags ${srcdest}lib/*.c ${srcdest}lib/*/*.c ${srcdest}src/*.c ${srcdest}include/*.h ${srcdest}include/sys/*.h
|
||
|
||
all-go:
|
||
${srcdest}build-aux/build-guile.sh
|
||
|
||
clean-go:
|
||
rm -f $(shell find . -name '*.go')
|
||
|
||
check:
|
||
$(SHELL) check.sh
|
||
|
||
check-mescc:
|
||
$(SHELL) pre-inst-env build-aux/check-mescc.sh
|
||
|
||
# Mes does not feature post-install checks yet, so we're great!
|
||
installcheck:
|
||
true
|
||
|
||
install:
|
||
$(SHELL) install.sh
|
||
|
||
uninstall:
|
||
$(SHELL) uninstall.sh
|
||
|
||
doc/version.texi: ${srcdest}doc/mes.texi GNUmakefile
|
||
@mkdir -p $(@D)
|
||
(set `LANG= date -r $< +'%d %B %Y'`;\
|
||
echo "@set UPDATED $$1 $$2 $$3"; \
|
||
echo "@set UPDATED-MONTH $$2 $$3"; \
|
||
echo "@set EDITION $(VERSION)"; \
|
||
echo "@set VERSION $(VERSION)") > $@
|
||
|
||
doc: doc/version.texi
|
||
ifdef MAKEINFO
|
||
doc: info
|
||
else
|
||
$(warning skipping info: no makeinfo)
|
||
endif
|
||
|
||
ifdef HELP2MAN
|
||
doc: man
|
||
else
|
||
$(warning skipping man: no help2man)
|
||
endif
|
||
|
||
info: doc/mes.info
|
||
|
||
doc/mes.info: ${srcdest}doc/mes.texi doc/version.texi ${srcdest}doc/images/gcc-mesboot-graph.png GNUmakefile
|
||
$(MAKEINFO) -o $@ -I doc -I doc $<
|
||
|
||
doc/images/%.eps: ${srcdest}doc/images/%.dot
|
||
ifdef DOT
|
||
$(DOT) -T eps $< > $@
|
||
else
|
||
touch $@
|
||
endif
|
||
|
||
doc/images/%.pdf: ${srcdest}doc/images/%.dot
|
||
ifdef DOT
|
||
$(DOT) -T pdf $< > $@
|
||
else
|
||
touch $@
|
||
endif
|
||
|
||
doc/images/%.png: ${srcdest}doc/images/%.dot
|
||
ifdef DOT
|
||
$(DOT) -T png $< > $@
|
||
else
|
||
touch $@
|
||
$(warning info: graphvis missing: no images)
|
||
endif
|
||
|
||
man: doc/mes.1 doc/mescc.1 doc/mesar.1
|
||
|
||
# disable builtin-rules
|
||
%.o: %.s
|
||
%.s: %.S
|
||
%.o: %.S
|
||
%.o: %.c
|
||
%: %.S
|
||
%: %.o
|
||
%: %.c
|
||
|
||
doc/mes.1: src/${program_prefix}mes | build
|
||
MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) \
|
||
--name="Scheme interpreter for bootstrapping the GNU system" \
|
||
$(<F) > $@
|
||
|
||
doc/mescc.1: scripts/mescc src/${program_prefix}mes | build
|
||
MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) \
|
||
--name="C99 compiler in Scheme for bootstrapping the GNU system" \
|
||
$(<F) > $@
|
||
|
||
doc/mesar.1: scripts/mescc src/${program_prefix}mes | build
|
||
MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) \
|
||
--name="Archiver for MesCC" \
|
||
$(<F) > $@
|
||
|
||
html: doc/html/index.html
|
||
|
||
doc/html/index.html: ${srcdest}doc/mes.texi doc/version.texi doc/images/gcc-mesboot-graph.png
|
||
$(MAKEINFO) --html -o $(@D) -I ${srcdest}doc -I doc $<
|
||
|
||
dvi: doc/mes.dvi
|
||
|
||
doc/mes.dvi: ${srcdest}doc/mes.texi
|
||
$(MAKEINFO) --dvi -I ${srcdest}doc -I doc -o doc/mes.dvi $<
|
||
|
||
pdf: doc/mes.pdf
|
||
|
||
doc/mes.pdf: ${srcdest}doc/mes.texi
|
||
$(MAKEINFO) --pdf -I ${srcdest}doc -I doc -o doc/mes.pdf $<
|
||
|
||
ps: doc/mes.ps
|
||
|
||
doc/mes.ps: ${srcdest}doc/mes.texi
|
||
$(MAKEINFO) --ps -I ${srcdest}doc -I doc -o doc/mes.ps $<
|
||
|
||
WEB_IMAGES:=\
|
||
doc/images/gcc-mesboot-graph.eps\
|
||
doc/images/gcc-mesboot-graph.pdf\
|
||
doc/images/gcc-mesboot-graph.png
|
||
|
||
web: info $(WEB_IMAGES)
|
||
GENDOCS_TEMPLATE_DIR=doc build-aux/gendocs.sh -I doc -s ${srcdest}doc/mes.texi -o doc/web/manual --email bug-mes@gnu.org mes "GNU Mes manual"
|
||
|
||
### dist
|
||
COMMIT=$(shell test -e ${srcdest}.git && (cd ${srcdir} && git describe --dirty 2>/dev/null) || cat ${srcdest}.tarball-version)
|
||
TARBALL_VERSION=$(COMMIT:v%=%)
|
||
TARBALL_DIR:=$(PACKAGE)-$(TARBALL_VERSION)
|
||
TARBALL:=$(TARBALL_DIR).tar.gz
|
||
# Be friendly to Debian; avoid using EPOCH
|
||
MTIME=$(shell git show HEAD --format=%ct --no-patch 2>/dev/null)
|
||
# Reproducible tarball
|
||
TAR_FLAGS=--sort=name --mtime=@$(MTIME) --owner=0 --group=0 --numeric-owner --mode=go=rX,u+rw,a-s
|
||
|
||
.tarball-version:
|
||
echo $(COMMIT) > $@
|
||
|
||
GIT_ARCHIVE_HEAD:=git archive HEAD --
|
||
GIT_LS_FILES:=git ls-files
|
||
ifeq ($(wildcard .git),)
|
||
GIT_ARCHIVE_HEAD:=tar -cf-
|
||
GIT_LS_FILES:=find
|
||
MTIME:=0
|
||
endif
|
||
|
||
dist: $(TARBALL)
|
||
|
||
sign-dist: $(TARBALL)
|
||
gpg -a --output $(TARBALL).sig --detach-sig $(TARBALL)
|
||
git checkout ChangeLog
|
||
|
||
tree-clean-p:
|
||
test ! -d .git || git diff --exit-code > /dev/null
|
||
test ! -d .git || git diff --cached --exit-code > /dev/null
|
||
@echo commit:$(COMMIT)
|
||
|
||
generate-ChangeLog:
|
||
$(PERL) ${srcdest}build-aux/gitlog-to-changelog --srcdir=${srcdir} > $@
|
||
cat ChangeLog >> generate-ChangeLog
|
||
mv generate-ChangeLog ChangeLog
|
||
|
||
$(TARBALL): .tarball-version | generate-ChangeLog
|
||
($(GIT_LS_FILES) \
|
||
--exclude=$(TARBALL_DIR); \
|
||
echo $^ | tr ' ' '\n') \
|
||
| tar $(TAR_FLAGS) \
|
||
--transform=s,^,$(TARBALL_DIR)/,S -T- -cf- \
|
||
| gzip -c --no-name > $@
|
||
git checkout ChangeLog
|
||
|
||
ifdef GUIX
|
||
update-hash: $(TARBALL)
|
||
$(GUIX) download file://$(PWD)/$<
|
||
sed -i -e 's,(base32 #!mes!# "[^"]*"),(base32 #!mes!# "$(shell $(GUIX) hash $<)"),' guix/git/mes.scm
|
||
|
||
else
|
||
$(warning update-hash: no guix)
|
||
endif
|
||
|
||
tag:
|
||
git tag -s v$(VERSION) -m "GNU Mes $(VERSION)."
|
||
|
||
# Release process
|
||
# 0. Prepare git, see history:
|
||
# - doc: Release update
|
||
# + NEWS, etc.
|
||
# + doc/announce/ANNOUNCE-0.22, using xxx for checksums
|
||
# - Release 0.22
|
||
# 1. make tag VERSION=0.22
|
||
# 2. make sign-dist
|
||
# 3. make release
|
||
# - Update doc/announce/ANNOUNCE-0.22
|
||
# - doc: Post-release update.
|
||
# 4. verify bootstrap
|
||
|
||
guix-build:
|
||
./pre-inst-env $(GUIX) build mes@$(VERSION) --with-source=$(TARBALL)
|
||
|
||
release: update-hash | gen-announce guix-build
|
||
|
||
GPG_KEY_ID:=1A858392E331EAFDB8C27FFBF3C1A0D9C1D65273
|
||
GEN_ANNOUNCE=$(GNULIB)/build-aux/announce-gen
|
||
GNULIB=../../gnulib
|
||
gen-announce:
|
||
$(GEN_ANNOUNCE)\
|
||
--release-type=beta\
|
||
--package-name=mes\
|
||
--previous-version='0.21 '\
|
||
--current-version=$(VERSION)\
|
||
--gpg-key-id=$(GPG_KEY_ID)\
|
||
--url-directory=https://ftp.gnu.org/gnu/mes\
|
||
--news=NEWS\
|
||
> doc/announce/ANNOUNCE-$(VERSION)-
|
||
|
||
installdirs: mkinstalldirs
|
||
mkdir -p\
|
||
$(DESTDIR)$(bindir)\
|
||
$(DESTDIR)$(datadir)\
|
||
$(DESTDIR)$(libdir)\
|
||
$(DESTDIR)$(infodir)\
|
||
$(DESTDIR)$(mandir)
|
||
|
||
install-dvi: dvi
|
||
mkdir -p $(DESTDIR)${docdir}
|
||
cp doc/mes.dvi $(DESTDIR)${docdir}
|
||
|
||
install-html: html
|
||
mkdir -p $(DESTDIR)${docdir}
|
||
tar -cf- -C doc html | tar -xf- -C $(DESTDIR)${docdir}
|
||
|
||
install-pdf: pdf
|
||
mkdir -p $(DESTDIR)${docdir}
|
||
cp doc/mes.pdf $(DESTDIR)${docdir}
|
||
|
||
install-ps: ps
|
||
mkdir -p $(DESTDIR)${docdir}
|
||
cp doc/mes.ps $(DESTDIR)${docdir}
|
||
|
||
# We do not strip binaries, binutils' strip corrupts M1+hex2-generated ELFs
|
||
install-strip: install
|
||
|
||
|
||
define HELP_TOP
|
||
Usage: make [OPTION]... [TARGET]...
|
||
|
||
Main and non-standard targets:
|
||
all update everything
|
||
all-go update .go files
|
||
dist update $(TARBALL)
|
||
doc update documentation
|
||
check run unit tests
|
||
clean run git clean -dfx
|
||
clean-go clean .go files
|
||
info update info documentation
|
||
install install in $(prefix)
|
||
install-info install info docs in $(prefix)/share/info
|
||
release dist and tag
|
||
uninstall uninstall from $(prefix)
|
||
endef
|
||
export HELP_TOP
|
||
help:
|
||
@echo "$$HELP_TOP"
|
||
|
||
include ${srcdest}build-aux/export.make
|