fixed typos, changed the look of the pretty html tables (thanks cptn for xsl advice...
[monky] / 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
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
18 CFLAGS = -Wall -g
19
20 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
21         CFLAGS += -O0
22 else
23         CFLAGS += -O2
24 endif
25
26 configure: configure-stamp
27 configure-stamp:
28         dh_testdir
29         aclocal-1.9
30         libtoolize --force
31         autoheader
32         automake-1.9 -a
33         autoconf
34         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-double-buffer   --enable-own-window --enable-proc-uptime --enable-mpd --enable-xft --enable-seti
35         touch configure-stamp
36
37
38 build: build-stamp
39
40 build-stamp: configure-stamp 
41         dh_testdir
42
43         $(MAKE)
44 #docbook-to-man debian/conky.sgml > conky.1
45
46         touch build-stamp
47
48 clean:
49         dh_testdir
50         dh_testroot
51         rm -f build-stamp configure-stamp
52
53         -$(MAKE) clean
54
55         dh_clean 
56
57 install: build
58         dh_testdir
59         dh_testroot
60         dh_clean -k 
61         dh_installdirs
62
63         $(MAKE) install DESTDIR=$(CURDIR)/debian/conky
64
65
66 # Build architecture-independent files here.
67 binary-indep: build install
68 # We have nothing to do by default.
69
70 # Build architecture-dependent files here.
71 binary-arch: build install
72         dh_testdir
73         dh_testroot
74         dh_installchangelogs ChangeLog
75         dh_installdocs AUTHORS README TODO doc/docs.html doc/variables.html doc/config_settings.html
76         dh_installexamples doc/conkyrc.sample
77         dh_installmenu
78         dh_installman doc/conky.1
79         dh_link
80         dh_strip
81         dh_compress
82         dh_fixperms
83         dh_installdeb
84         dh_shlibdeps
85         dh_gencontrol
86         dh_md5sums
87         dh_builddeb
88
89 binary: binary-indep binary-arch
90 .PHONY: build clean binary-indep binary-arch binary install configure