File: rules

package info (click to toggle)
mpdris 0.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 140 kB
  • sloc: python: 370; makefile: 15
file content (27 lines) | stat: -rwxr-xr-x 429 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
#!/usr/bin/make -f

#export DH_VERBOSE=1

build: build-arch build-indep
build-arch: 
build-indep: build-stamp

build-stamp:
	dh --with python2 build
	touch $@

clean:
	dh --with python2 clean

install: build
	dh --with python2 install

binary-arch: install
	# Nothing to do here

binary-indep: install
	dh --with python2 binary-indep

binary: binary-arch binary-indep

.PHONY: build clean binary-indep binary-arch binary install