File: rules

package info (click to toggle)
gr-satellites 5.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,156 kB
  • sloc: python: 27,761; cpp: 4,692; ansic: 1,247; sh: 118; makefile: 21
file content (22 lines) | stat: -rwxr-xr-x 499 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

#Enable some hardening
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --with python3 --with numpy3

override_dh_auto_configure:
	dh_auto_configure -- -DCMAKE_BUILD_RPATH_USE_ORIGIN=ON

override_dh_auto_test:
	- dh_auto_test

override_dh_installexamples:
	- dh_installexamples --exclude=.gitignore

override_dh_auto_clean:
	rm -rf docs/doxygen/doxyxml/__pycache__
	rm -rf docs/doxygen/doxyxml/generated/__pycache__
	rm -rf python/satyaml/__pycache__
	dh_auto_clean $@