4186fecbf8ac78798b483a586fbc282b7371fe66
[fmit.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 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 # These are used for cross-compiling and for saving the configure script
13 # from having to guess our platform (since we know it already)
14 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
15 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16 DEB_HOST_ARCH_OS    ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
17
18 # Disable Alsa on non-Linux architectures
19 ifneq (,$(findstring $(DEB_HOST_ARCH_OS), kfreebsd hurd))
20         DEB_CONFIGURE_ALSA = --disable-alsa
21 else
22         DEB_CONFIGURE_ALSA = --enable-alsa
23 endif
24
25
26 CFLAGS = -Wall -g
27
28 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
29         CFLAGS += -O0
30 else
31         CFLAGS += -O2
32 endif
33
34 config.status: configure
35         dh_testdir
36         # Add here commands to configure the package.
37         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-Qt-dir=/usr/share/qt3 $(DEB_CONFIGURE_ALSA) CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
38
39
40 build: build-stamp
41
42 build-stamp:  config.status
43         dh_testdir
44
45         # Add here commands to compile the package.
46         $(MAKE)
47         #docbook-to-man debian/fmit.sgml > fmit.1
48
49         touch $@
50
51 clean:
52         dh_testdir
53         dh_testroot
54         rm -f build-stamp 
55
56         # Add here commands to clean up after the build process.
57         [ ! -f Makefile ] || $(MAKE) distclean
58 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
59         cp -f /usr/share/misc/config.sub config.sub
60 endif
61 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
62         cp -f /usr/share/misc/config.guess config.guess
63 endif
64
65         rm -f $(CURDIR)/config.sub $(CURDIR)/config.guess
66
67         # If we're not in a mercurial repository, make sure no hg metadata is
68         # lying around
69         if ! [ -d .hg ]; then \
70                 rm -f .hg*; \
71         fi
72
73         dh_clean
74
75 install: build
76         dh_testdir
77         dh_testroot
78         dh_clean -k 
79         dh_installdirs
80
81         # Add here commands to install the package into debian/tmp.
82         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
83
84
85 # Build architecture-independent files here.
86 binary-indep: build install
87 # We have nothing to do by default.
88
89 # Build architecture-dependent files here.
90 binary-arch: build install
91         dh_testdir
92         dh_testroot
93         dh_installchangelogs ChangeLog
94         dh_installdocs
95         dh_installexamples
96         dh_install --sourcedir=debian/tmp
97 #       dh_installmenu
98 #       dh_installdebconf       
99 #       dh_installlogrotate
100 #       dh_installemacsen
101 #       dh_installpam
102 #       dh_installmime
103 #       dh_python
104 #       dh_installinit
105 #       dh_installcron
106 #       dh_installinfo
107         dh_installman
108         dh_link
109         dh_strip
110         dh_compress
111         dh_fixperms
112 #       dh_perl
113 #       dh_makeshlibs
114         dh_installdeb
115         dh_shlibdeps
116         dh_gencontrol
117         dh_md5sums
118         dh_builddeb
119
120 binary: binary-indep binary-arch
121 .PHONY: build clean binary-indep binary-arch binary install