File: rules

package info (click to toggle)
libcifpp 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 9,040 kB
  • sloc: cpp: 31,879; sh: 3,342; xml: 1,871; makefile: 18
file content (20 lines) | stat: -rwxr-xr-x 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f

export DH_VERBOSE = 1

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

# Fixing reproducible builds
LC_ALL := C.UTF-8
export LC_ALL

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- --enable-shared --disable-static --disable-revision

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	$(MAKE) test
endif