mirror of
https://github.com/swaywm/sway.git
synced 2026-04-18 06:46:56 -04:00
21 lines
425 B
Makefile
Executable file
21 lines
425 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
export DH_VERBOSE=1
|
|
export DH_OPTIONS=-v
|
|
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
export DEB_CFLAGS_MAINT_APPEND = -Wno-error=deprecated-declarations
|
|
|
|
%:
|
|
dh $@
|
|
|
|
.PHONY: override_dh_auto_configure
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --libexecdir=lib
|
|
|
|
.PHONY: override_dh_missing
|
|
override_dh_missing:
|
|
dh_missing --fail-missing
|
|
|