r1: [svn-inject] Installing original source of squirrelmail-cn
[squirrelmail-cn.git] / debian / rules
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 #export DH_VERBOSE=1
10
11 configure: configure-stamp
12 configure-stamp:
13         dh_testdir
14         touch configure-stamp
15
16 build: build-stamp
17
18 build-stamp: configure-stamp 
19         dh_testdir
20         touch build-stamp
21
22 clean:
23         dh_testdir
24         dh_testroot
25         rm -f build-stamp configure-stamp
26         dh_clean 
27
28 install: build
29         dh_testdir
30         dh_testroot
31         dh_clean -k 
32         dh_installdirs
33
34 binary-indep: build install
35
36 binary-arch: build install
37         dh_testdir
38         dh_testroot
39         dh_installchangelogs 
40         dh_installdocs
41         dh_install -X.svn
42 #       dh_installexamples
43 #       dh_install
44 #       dh_installmenu
45         dh_installdebconf
46 #       dh_installlogrotate
47 #       dh_installemacsen
48 #       dh_installpam
49 #       dh_installmime
50 #       dh_installinit
51 #       dh_installcron
52 #       dh_installinfo
53         dh_installman
54         dh_link
55 #       dh_strip
56         dh_compress
57         dh_fixperms
58 #       dh_perl
59 #       dh_python
60 #       dh_makeshlibs
61         dh_installdeb
62         dh_shlibdeps
63         dh_gencontrol
64         dh_md5sums
65         dh_builddeb
66
67 binary: binary-indep binary-arch
68 .PHONY: build clean binary-indep binary-arch binary install configure