separate daemon from gui, not auto connect
[googlelatitude] / 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 # Uncomment this to turn on verbose mode.
10 export DH_VERBOSE=1
11
12 APPNAME := googlelatitude
13
14 configure: configure-stamp
15 configure-stamp:
16         dh_testdir
17         qmake
18         touch configure-stamp
19
20 build: build-stamp
21 build-stamp: configure-stamp  
22         dh_testdir
23         $(MAKE)
24         touch build-stamp 
25
26 clean: 
27         dh_testdir
28         dh_testroot
29         rm -f build-stamp configure-stamp
30         -$(MAKE) clean
31         dh_clean 
32
33 install: build
34         dh_testdir
35         dh_testroot
36         dh_clean -k 
37         dh_installdirs
38         $(MAKE) DESTDIR=$(CURDIR)/debian/$(APPNAME) install
39
40 binary-indep: build install
41 binary-arch: build install
42         dh_testdir
43         dh_testroot
44         dh_installchangelogs 
45         dh_installdocs
46         dh_installexamples
47         dh_install
48         dh_installmenu
49         dh_installdebconf       
50         dh_installlogrotate
51         dh_installemacsen
52         dh_installpam
53         dh_installmime
54         dh_python
55         dh_installinit
56         dh_installcron
57         dh_installinfo
58         dh_installman
59         dh_link
60         dh_strip
61         dh_compress
62         dh_fixperms
63         dh_perl
64         dh_makeshlibs
65         dh_installdeb
66         dh_shlibdeps
67         dh_gencontrol
68         dh_md5sums
69         dh_builddeb
70
71 binary: binary-indep binary-arch
72 .PHONY: build clean binary-indep binary-arch binary install configure