File: rules

package info (click to toggle)
librcc 0.2.13%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,036 kB
  • sloc: ansic: 9,069; xml: 524; sh: 247; makefile: 163
file content (23 lines) | stat: -rwxr-xr-x 489 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4

%:
	dh $@

override_dh_auto_configure:
	./autogen.sh
	dh_auto_configure -- --enable-force-dynamic-engines \
	  --disable-libtranslate --disable-gtk2 --disable-gtk3

override_dh_auto_build:
	dh_auto_build
	cd docs/api && doxygen Doxyfile

override_dh_installdocs-indep:
	dh_installdocs -p librcc-doc --doc-main-package=librcc-dev

override_dh_clean:
	rm -rf docs/api/html
	dh_clean