File: rules

package info (click to toggle)
jamnntpd 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 740 kB
  • ctags: 504
  • sloc: ansic: 7,318; sh: 108; makefile: 45
file content (29 lines) | stat: -rwxr-xr-x 579 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
24
25
26
27
28
29
#!/usr/bin/make -f
# debian/rules for jamnntpd

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

%:
	dh $@

override_dh_auto_clean:
	$(MAKE) -C src cleanlinux

override_dh_auto_build:
	$(MAKE) -C src linux

override_dh_auto_install:
	dh_auto_install --destdir=debian/jamnntpd

override_dh_installchangelogs:
	dh_installchangelogs --keep History.txt

override_dh_installdocs:
	dh_installdocs --link-doc=jamnntpd

override_dh_strip:
	dh_strip --dbgsym-migration='jamnntpd-dbg (<< 1.3-1~)'

.PHONY: override_dh_strip