File: rules

package info (click to toggle)
libs3 2.0-4
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 812 kB
  • sloc: ansic: 6,949; xml: 227; sh: 109; makefile: 12
file content (22 lines) | stat: -rwxr-xr-x 400 bytes parent folder | download | duplicates (2)
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
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

DESTDIR = $(CURDIR)/debian/tmp/usr/

override_dh_auto_build:
ifeq (,$(filter terse,$(DEB_BUILD_OPTIONS)))
	dh_auto_build -- VERBOSE=true
else
	dh_auto_build
endif

override_dh_auto_install:
	dh_auto_install -- DESTDIR=$(DESTDIR)

%:
	dh $@

.PHONY: override_dh_auto_build override_dh_auto_install