Use dpkg-buildflags in build process
[idzebra-moved-to-github.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8
9 # These are used for cross-compiling and for saving the configure script
10 # from having to guess our platform (since we know it already)
11 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
12 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
13
14 CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
15 CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS)
16 CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS)
17 LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
18
19 config.status: configure
20         dh_testdir
21         # Add here commands to configure the package.
22         CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
23                 LDFLAGS="$(LDFLAGS)" \
24                 ./configure --host=$(DEB_HOST_GNU_TYPE) \
25                 --build=$(DEB_BUILD_GNU_TYPE) \
26                 --mandir=\$${prefix}/share/man \
27                 --infodir=\$${prefix}/share/info \
28                 --enable-shared --enable-static \
29                 --with-yaz=/usr/bin \
30                 --with-tclconfig=/usr/lib/tcl8.4 \
31                 --prefix=/usr
32
33 build: build-stamp
34 build-stamp:  config.status
35         dh_testdir
36
37         # Add here commands to compile the package.
38         $(MAKE) 
39
40         touch build-stamp
41
42 clean:
43         dh_testdir
44         dh_testroot
45         rm -f build-stamp 
46
47         # Add here commands to clean up after the build process.
48         -$(MAKE) distclean
49 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
50         if test ! -f config.sub; then cp -f /usr/share/misc/config.sub config.sub ; fi
51 endif
52 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
53         if test ! -f config.guess ; then cp -f /usr/share/misc/config.guess config.guess ; fi
54 endif
55
56         dh_clean 
57
58 install: build
59         dh_testdir
60         dh_testroot
61         dh_clean -k 
62         dh_installdirs
63
64         # Add here commands to install the package into debian/tmp
65         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
66
67
68 # Build architecture-independent files here.
69 binary-indep: build install
70 # We have nothing to do by default.
71
72 # Build architecture-dependent files here.
73 binary-arch: build install
74         dh_testdir
75         dh_testroot
76         dh_installchangelogs 
77         dh_installdocs
78         dh_installexamples
79         dh_install --sourcedir=debian/tmp
80 #       dh_installmenu
81 #       dh_installdebconf       
82 #       dh_installlogrotate
83 #       dh_installemacsen
84 #       dh_installpam
85 #       dh_installmime
86 #       dh_installinit
87 #       dh_installcron
88 #       dh_installinfo
89         dh_installman
90         dh_link
91         dh_strip
92         dh_compress
93         dh_fixperms
94 #       dh_perl
95 #       dh_python
96         dh_makeshlibs -V 'libidzebra-2.0 (>= 2.0.20)' -X mod-
97         dh_installdeb
98         dh_shlibdeps -L libidzebra-2.0 -l debian/libidzebra-2.0/usr/lib
99         dh_gencontrol
100         dh_md5sums
101         dh_builddeb
102
103 binary: binary-indep binary-arch
104 .PHONY: build clean binary-indep binary-arch binary install