File: rules

package info (click to toggle)
ttylog 0.29-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 148 kB
  • ctags: 7
  • sloc: ansic: 167; makefile: 14
file content (22 lines) | stat: -rwxr-xr-x 441 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
# debian/rules for ttylog

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
CFLAGS+=$(CPPFLAGS)
CXXFLAGS+=$(CPPFLAGS)

%:
	dh $@

override_dh_auto_install:
	dh_auto_install --destdir=debian/ttylog

override_dh_installdocs:
	dh_installdocs --link-doc=ttylog

override_dh_strip:
	dh_strip --dbgsym-migration='ttylog-dbg (<< 0.28-1~)'

.PHONY: override_dh_strip