1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
#!/usr/bin/make -f
#
# Makefile for Ada Reference Manual.
# Copyright (c) 2010-2012 Stephen Leake <stephen_leake@stephe-leake.org>
# Copyright (c) 2013-2017 Nicolas Boulenguez <nicolas@debian.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/>.
define NEW_LINE :=
endef
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
DOCUMENTS := aarm arm
YEARS := 2005 2012
FORMATS := html info txt pdf
endif
gnat_version := $(shell gnatgcc -dumpversion | sed 's/\..*//')
DEB_BUILD_MAINT_OPTIONS := hardening=+all
DEB_CFLAGS_MAINT_APPEND := -fstack-check
include /usr/share/dpkg/buildflags.mk
include /usr/share/ada/debian_packaging-$(gnat_version).mk
ADAFLAGS += -gnat2005 -gnato -gnatVa
%:
dh $@
# Ignore the upstream build/ directory.
.PHONY: build
build:
dh $@
######################################################################
# Upstream Makefile is in the build directory.
.PHONY: override_dh_auto_clean
override_dh_auto_clean:
$(MAKE) -C build clean
# Default settings do not produce PDF format.
.PHONY: override_dh_auto_build
override_dh_auto_build:
$(MAKE) -C build -j$(BUILDER_JOBS) \
$(foreach v,ADAFLAGS BUILDER_OPTIONS FORMATS LDFLAGS,"$(v)=$($(v))")
######################################################################
.PHONY: override_dh_compress
override_dh_compress:
dh_compress --all --exclude=.TXT
######################################################################
.PHONY: override_dh_installinfo
override_dh_installinfo:
$(foreach y,$(YEARS),dh_installinfo --package=ada-reference-manual-$(y)\
$(foreach d,$(DOCUMENTS),build/$(d)$(y).info)$(NEW_LINE))
dh_installinfo --remaining-packages
######################################################################
# Debhelper files for doc-base.
TITLE_aarm := Annotated Ada Reference Manual
TITLE_arm := Ada Reference Manual
FILEPREFIX_aarm := aa
FILEPREFIX_arm := rm
ISO_2005 := 2007
ISO_2012 := 201x
ABSTRACT_aarm = The Annotated Ada Reference Manual, ISO/IEC \
8652:$(ISO_$(y))(E). It contains the entire text of the Ada $(y) \
standard, plus various annotations. It is intended primarily for \
compiler writers, validation test writers, and other language \
lawyers. The annotations include detailed rationale for individual \
rules and explanations of some of the more arcane interactions among \
the rules.
ABSTRACT_arm = The Ada Reference Manual, ISO/IEC \
8652:$(ISO_$(y))(E). It contains the entire text of the Ada $(y) \
standard.
define foreach_document_year_template
DOC_BASE_GENERATED += debian/ada-reference-manual-$(y).doc-base.$(d)$(y)
debian/ada-reference-manual-$(y).doc-base.$(d)$(y): debian/doc_base_template
sed $$< \
-e 's@DOCUMENT@$(d)@g' \
-e 's@YEAR@$(y)@g' \
-e 's@TITLE@$(TITLE_$(d))@g' \
-e 's@ABSTRACT@$(ABSTRACT_$(d))@g' \
-e 's@FILEPREFIX@$(FILEPREFIX_$(d))@g' \
> $$@
endef
$(foreach d,$(DOCUMENTS),$(foreach y,$(YEARS),\
$(eval $(foreach_document_year_template))))
.PHONY: override_dh_installdocs
override_dh_installdocs: $(DOC_BASE_GENERATED)
$(foreach y,$(YEARS),dh_installdocs --package=ada-reference-manual-$(y)\
README.txt \
$(foreach d,$(DOCUMENTS),build/$(d)$(y).html\
build/$(d)$(y).txt\
build/$(d)$(y).pdf)$(NEW_LINE))
dh_installdocs --remaining-packages
clean: doc_base_clean
doc_base_clean:
rm --force $(DOC_BASE_GENERATED)
.PHONY: doc_base_clean
######################################################################
# Check that some .txt docs are still duplicates, then symlink.
.PHONY: override_dh_link
override_dh_link:
$(foreach y,$(YEARS), \
$(foreach c,Lib TOC, \
diff -q \
debian/ada-reference-manual-$(y)/usr/share/doc/ada-reference-manual-$(y)/aarm$(y).txt/aa-$(c).TXT \
debian/ada-reference-manual-$(y)/usr/share/doc/ada-reference-manual-$(y)/arm$(y).txt/rm-$(c).TXT$(NEW_LINE) \
dh_link --package=ada-reference-manual-$(y) \
usr/share/doc/ada-reference-manual-$(y)/aarm$(y).txt/aa-$(c).TXT \
usr/share/doc/ada-reference-manual-$(y)/arm$(y).txt/rm-$(c).TXT$(NEW_LINE)))
dh_link --remaining-packages
|