~cimi/light-themes/gtk+3

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Kenneth Wimer
  • Date: 2010-03-04 11:26:34 UTC
  • Revision ID: kwwii@clive-20100304112634-5tyriyshzcjcmimv
First commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
build: build-stamp
 
4
build-stamp:
 
5
        dh build
 
6
        touch $@
 
7
 
 
8
install: install-stamp
 
9
install-stamp: build
 
10
        dh install
 
11
        touch $@
 
12
 
 
13
binary: binary-arch binary-indep
 
14
binary-arch: install
 
15
        dh $@ --priority=90
 
16
 
 
17
binary-indep: install
 
18
        dh $@ --priority=90
 
19
 
 
20
clean:
 
21
        dh $@
 
22
 
 
23
PHONY: binary-arch binary-indep clean binary build install
 
24