mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-04 15:41:19 +00:00
27 lines
562 B
Makefile
Executable file
27 lines
562 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
ifeq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
|
|
CONFIGURE_OPTS+=-Dgtk_doc=true
|
|
else
|
|
CONFIGURE_OPTS+=-Dgtk_doc=false
|
|
endif
|
|
|
|
%:
|
|
dh $@ -- -B_build
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CONFIGURE_OPTS)
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
ifeq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
|
|
# https://github.com/mesonbuild/meson/pull/2862
|
|
ninja -C _build/ calls-doc
|
|
endif
|
|
|
|
override_dh_auto_test:
|
|
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
|
|
xvfb-run ninja -C _build test
|
|
endif
|