File: rules

package info (click to toggle)
vite 1.2%2Bsvn%2Bgit4.c6c0ce7-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,488 kB
  • sloc: cpp: 32,339; makefile: 457; sh: 144; ansic: 67
file content (22 lines) | stat: -rwxr-xr-x 495 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
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = reproducible=+fixfilepath

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- -DVITE_ENABLE_OTF=ON \
		-DVITE_ENABLE_MT_PARSERS=ON \
		-DVITE_ENABLE_VBO=OFF \
		-DUSE_QT5=ON

override_dh_auto_build:
	dh_auto_build
	FORCE_SOURCE_DATE=1 $(MAKE) -C docs/user_manual
	FORCE_SOURCE_DATE=1 $(MAKE) -C docs/technical_manual

override_dh_auto_clean:
	$(MAKE) -C docs/user_manual clean
	$(MAKE) -C docs/technical_manual clean
	dh_auto_clean