~xubuntu-dev/xubuntu-default-settings/trunk

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Gauvain Pocentek
  • Date: 2006-08-28 14:59:32 UTC
  • Revision ID: gauvainpocentek@gmail.com-20060828145932-6a753142b79aa1aa
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
# Sample debian/rules that uses debhelper.
 
4
# This file was originally written by Joey Hess and Craig Small.
 
5
# As a special exception, when this file is copied by dh-make into a
 
6
# dh-make output file, you may use that output file without restriction.
 
7
# This special exception was added by Craig Small in version 0.37 of dh-make.
 
8
 
 
9
# Uncomment this to turn on verbose mode.
 
10
#export DH_VERBOSE=1
 
11
 
 
12
 
 
13
build:
 
14
 
 
15
clean:
 
16
        dh_testdir
 
17
        dh_testroot
 
18
 
 
19
        dh_clean 
 
20
 
 
21
install: build
 
22
        dh_testdir
 
23
        dh_testroot
 
24
        dh_clean
 
25
        dh_installdirs
 
26
        dh_install etc/* etc
 
27
        dh_install usr/* usr
 
28
# Build architecture-independent files here.
 
29
binary-indep: build install
 
30
 
 
31
        dh_testdir
 
32
        dh_testroot
 
33
        dh_installchangelogs 
 
34
        dh_installdocs
 
35
        dh_compress
 
36
        dh_installdeb
 
37
        dh_gencontrol
 
38
        dh_md5sums
 
39
        dh_builddeb
 
40
 
 
41
binary: binary-indep
 
42
.PHONY: build clean binary-indep binary install