File: rules

package info (click to toggle)
6tunnel 0.11rc2-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 208 kB
  • ctags: 144
  • sloc: ansic: 590; sh: 178; makefile: 38
file content (17 lines) | stat: -rwxr-xr-x 369 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS	= hardening=+all
export DEB_CFLAGS_MAINT_APPEND	= -Wall -pedantic $(CPPFLAGS)
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

override_dh_auto_install:
	$(MAKE) install prefix=$(CURDIR)/debian/6tunnel/usr

override_dh_auto_configure:
	[ -f Makefile ] || sh ./autogen.sh
	dh_auto_configure

%:
	dh $@

# End of file