File: rules

package info (click to toggle)
vrfy 990522-10
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 360 kB
  • ctags: 520
  • sloc: ansic: 3,595; makefile: 157
file content (19 lines) | stat: -rwxr-xr-x 437 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS	= hardening=+all
export DEB_CFLAGS_MAINT_APPEND	= -Wall -pedantic
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

override_dh_auto_build:
	$(MAKE) CC="$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)"

override_dh_auto_install:
	$(MAKE) DESTDIR=$(CURDIR)/debian/vrfy DESTBIN=/usr/bin STRIP= install

override_dh_installchangelogs:
	dh_installchangelogs RELEASE_NOTES

%:
	dh $@

# End of file