#!/usr/bin/make -f # debian/rules for adacontrol. # Copyright (c) 2006-2012 Ludovic Brenta # Copyright (c) 2014-2019 Nicolas Boulenguez # # 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 2 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. # # The full text of the GNU General Public License is in the file # /usr/share/common-licenses/GPL on Debian systems. ifneq (,$(wildcard /usr/bin/gnatgcc)) # Build-Depends-Arch are installed. DEB_BUILD_MAINT_OPTIONS := hardening=+all DEB_LDFLAGS_MAINT_APPEND := -Wl,--as-needed -Wl,--no-undefined include /usr/share/dpkg/buildflags.mk gnat_version := $(shell /usr/bin/gnatgcc --version | sed -n '1s/.* //p') gnat_base_version := $(basename $(basename $(gnat_version))) include /usr/share/ada/debian_packaging-$(gnat_base_version).mk ADAFLAGS += -gnatwa endif executables := adactl pfni ptree adactl_fix %: dh $@ .PHONY: $(addprefix override_dh_auto_, \ configure build-arch build-indep test-arch test-indep install clean) override_dh_auto_build-arch: $(MAKE) build 'CARGS=$(ADAFLAGS)' \ 'GARGS=$(BUILDER_OPTIONS) "-XLDFLAGS=$(LDFLAGS)"' override_dh_auto_clean:: # Rewrite the veryclean target without Build-Depends-Arch. rm -f src/*.ali src/*.o $(foreach e,$(executables),$(e) src/$(e).bexch src/b__$(e).ad[bs]) override_dh_auto_build-indep: ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS))) $(MAKE) -C doc endif override_dh_auto_clean:: rm -f \ doc/adacontrol_??.html \ doc/adacontrol_??.info \ doc/adacontrol_??.txt \ doc/adacontrol_??.pdf override_dh_auto_test-arch: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS) $(DEB_BUILD_PROFILES))) # Ignore build-time tests so that the severity of #924835 can be # lowered and the package accepted into buster. An actual fix # requires a bit more time and probably a longer diff. # Produce the log nevertheless. -cd test && sh run.sh endif override_dh_auto_clean:: rm -fr test/res rm -f $(addprefix test/,*.ali *.adt) # Adactl cannot open compressed rules. # PDF files are already internally compressed. .PHONY: override_dh_compress override_dh_compress: dh_compress --package=adacontrol --exclude=.aru dh_compress --package=adacontrol-doc --exclude=.pdf dh_compress --remaining-packages