File: rules

package info (click to toggle)
zbackup 1.5-2
  • links: PTS
  • area: main
  • in suites: bookworm, forky, trixie
  • size: 816 kB
  • sloc: cpp: 6,957; ansic: 468; python: 207; makefile: 10
file content (19 lines) | stat: -rwxr-xr-x 384 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
# -*- makefile -*-

#export DH_VERBOSE=1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

override_dh_auto_configure:
	dh_auto_configure -O--buildsystem=cmake -- \
		-DCMAKE_CXX_STANDARD='11'

override_dh_auto_build:
	dh_auto_build -O--buildsystem=cmake
	mkd2html README.md

%:
	dh $@ --buildsystem=cmake

.PHONY: override_dh_auto_configure override_dh_auto_build