911d1b80dd24595f5cca79beb8d56b5e7f315721
[senf.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 #
5 # This file was originally written by Joey Hess and Craig Small.
6 # As a special exception, when this file is copied by dh-make into a
7 # dh-make output file, you may use that output file without restriction.
8 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 #
10 # Modified to make a template file for a multi-binary package with separated
11 # build-arch and build-indep targets  by Bill Allombert 2001
12
13 # Uncomment this to turn on verbose mode.
14 #export DH_VERBOSE=1
15
16 debian_build=1
17 export debian_build
18
19 # This has to be exported to make some magic below work.
20 export DH_OPTIONS
21
22 #DPKG_ARCH#
23
24 CFLAGS = -Wall -g
25
26 CONCURRENCY_LEVEL ?= 1
27 export CONCURRENCY_LEVEL
28
29 LIBTYPE ?= UNSPEC
30
31 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
32         CFLAGS += -O0
33 else
34         CFLAGS += -O2
35 endif
36
37 destdir=$(CURDIR)/debian/tmp
38
39 configure: configure-stamp
40 configure-stamp:
41         dh_testdir
42 #       # Add here commands to configure the package.
43         rm -f Doxyfile.local SConfig local_config.hh
44         scons prepare
45 #       If needed, we could create new files 'Doxyfile.local',
46 #       'SConfig' and/or 'local_config.hh' here.  We don't remove them
47 #       in 'clean' to allow building a source package from an
48 #       individually configured svn working copy. (The files are ignored
49 #       by dpkg-buildpackge because of appropriate -I arguments provided 
50 #       by 'scons deb' and 'scons debsrc'
51         touch configure-stamp
52
53 build: build-arch build-indep
54
55 build-arch: build-arch-final build-arch-debug
56
57 build-arch-final: build-arch-final-stamp
58 build-arch-final-stamp: configure-stamp
59 #       Add here commands to compile the arch part of the package.
60         scons -j $(CONCURRENCY_LEVEL) default final=1
61         scons $(destdir)/usr/lib final=1 PREFIX='$(destdir)/usr'
62         touch $@
63
64 build-arch-debug: build-arch-debug-stamp
65 build-arch-debug-stamp: configure-stamp
66 #       Add here commands to compile the arch part of the package.
67         scons -j $(CONCURRENCY_LEVEL) default LIBADDSUFFIX=_g OBJADDSUFFIX=_g
68         scons $(destdir)/usr/lib LIBADDSUFFIX=_g OBJADDSUFFIX=_g \
69                 PREFIX='$(destdir)/usr' OBJINSTALLDIR='$$LIBINSTALLDIR/debug'
70         touch $@
71
72 build-indep: build-indep-stamp
73 build-indep-stamp: configure-stamp
74 #       Add here commands to compile the indep part of the package.
75         scons -j $(CONCURRENCY_LEVEL) all_docs
76         scons all_docs
77         scons linklint
78         scons fixlinks
79         scons $(destdir)/usr/include $(destdir)/usr/share/doc $(SCONS_OPTIONS) \
80                 PREFIX='$(destdir)/usr' \
81                 DOCINSTALLDIR='$$PREFIX/share/doc/libsenf-doc/html' \
82                 INCLUDEINSTALLDIR='$$PREFIX/include/senf' 
83 #       Remove all the files not really needed from the documentation directories
84         find $(destdir)/usr/share/doc/libsenf-doc/html \
85                 -type f ! -regex '.*\.\(html\|css\|png\|php\|idx\|tag\)' | xargs rm -f
86 #       We need to install the example sourcecode
87         find Examples \( -name "*.hh" -o -name "*.cc" \) -printf "%P\n" | \
88                 while read src; do \
89                         dir="$(destdir)/usr/share/doc/libsenf-doc/examples/$$(dirname "$$src")"; \
90                         mkdir -p "$$dir"; \
91                         cp "Examples/$$src" "$$dir"; \
92                 done
93         touch $@
94
95 clean: debclean
96 #       Add here commands to clean up after the build process.
97         -scons -c all
98         -scons -c all LIBADDSUFFIX=_g OBJADDSUFFIX=_g
99
100 debclean:
101         dh_testdir
102         dh_testroot
103         rm -f build-arch-*-stamp build-indep-stamp configure-stamp
104         dh_clean
105
106 install: install-arch install-indep
107 install-indep: build-indep
108         dh_testdir
109         dh_testroot
110         dh_clean -k -i -Xdebian/tmp
111         dh_installdirs -i
112 #       Add here commands to install the indep part of the package into
113 #       debian/<package>-doc.
114         dh_install -X.svn -i
115
116 install-arch: build-arch
117         dh_testdir
118         dh_testroot
119         dh_clean -k -s -Xdebian/tmp
120         dh_installdirs -s
121 #       Add here commands to install the arch part of the package into 
122 #       debian/tmp.
123         dh_install -X.svn -s
124
125 # Must not depend on anything. This is to be called by
126 # binary-arch/binary-indep
127 # in another 'make' thread.
128 binary-common:
129         dh_testdir
130         dh_testroot
131         dh_installchangelogs
132         dh_installdocs
133         dh_installexamples
134 #       dh_installmenu
135 #       dh_installdebconf       
136 #       dh_installlogrotate     
137 #       dh_installemacsen
138 #       dh_installpam
139 #       dh_installmime
140 #       dh_python
141 #       dh_installinit
142 #       dh_installcron
143 #       dh_installinfo
144         dh_installman
145         dh_link
146         dh_strip
147         dh_compress -Xhtml -Xdoclib -Xexamples
148         dh_fixperms
149 #       dh_perl
150         dh_makeshlibs
151         dh_installdeb
152         dh_shlibdeps
153         dh_gencontrol
154         dh_md5sums
155         dh_builddeb
156
157 binary-indep: build-indep install-indep
158         $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
159
160 binary-arch: build-arch install-arch
161         $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
162
163 binary: binary-arch binary-indep
164 .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch \
165         binary-arch-common binary-arch-final binary-arch-debug