631b0b48d683e0947a5bd562ea87c074b8dfc2cd
[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 CONCURRENCY_LEVEL ?= 1
23 export CONCURRENCY_LEVEL
24
25 destdir=$(CURDIR)/debian/tmp
26
27 configure: configure-stamp
28 configure-stamp:
29         dh_testdir
30 #       Add here commands to configure the package.
31 #       rm -f Doxyfile.local SConstruct.local senf/local_config.hh
32         scons prepare
33 #       If needed, we could create new files 'Doxyfile.local',
34 #       'SConstruct.local' and/or 'local_config.hh' here.  We don't
35 #       remove them in 'clean' to allow building a source package from
36 #       an individually configured svn working copy. (The files are
37 #       ignored by dpkg-buildpackge because of appropriate -I
38 #       arguments provided by 'scons deb' and 'scons debsrc'
39         touch configure-stamp
40
41 build: build-arch build-indep
42
43 build-arch: build-arch-debug build-arch-final
44
45 build-arch-final: build-arch-final-stamp
46 build-arch-final-stamp: configure-stamp
47 #       Add here commands to compile the arch part of the package.
48         scons -j $(CONCURRENCY_LEVEL) $(destdir)/usr/lib $(destdir)/usr/bin \
49                 final=1 syslayout=1 \
50                 PREFIX='$(destdir)/usr' OBJINSTALLDIR='$$PREFIX/lib/senf/final'
51         touch $@
52
53 build-arch-debug: build-arch-debug-stamp
54 build-arch-debug-stamp: configure-stamp
55 #       Add here commands to compile the arch part of the package.
56                 scons -j $(CONCURRENCY_LEVEL) $(destdir)/usr/lib \
57                 LIBADDSUFFIX=_g OBJADDSUFFIX=_g syslayout=1 \
58                 PREFIX='$(destdir)/usr' OBJINSTALLDIR='$$PREFIX/lib/senf/debug'
59         touch $@
60
61 build-indep: build-indep-stamp
62 build-indep-stamp: configure-stamp
63 #       Add here commands to compile the indep part of the package.
64         scons -j $(CONCURRENCY_LEVEL) all_docs
65         scons linklint
66         scons fixlinks
67         scons $(destdir)/usr/include $(destdir)/usr/share/doc \
68                 syslayout=1 PREFIX='$(destdir)/usr' \
69                 DOCINSTALLDIR='$$PREFIX/share/doc/libsenf-doc/html'
70 #       We need to install the example sourcecode
71         find Examples \( -name "*.hh" -o -name "*.cc" \) -printf "%P\n" | \
72                 while read src; do \
73                         dir="$(destdir)/usr/share/doc/libsenf-doc/examples/$$(dirname "$$src")"; \
74                         mkdir -p "$$dir"; \
75                         cp "Examples/$$src" "$$dir"; \
76                 done
77         touch $@
78
79 clean: debclean
80 #       Add here commands to clean up after the build process.
81         -scons -c all
82         -scons -c all LIBADDSUFFIX=_g OBJADDSUFFIX=_g
83
84 debclean:
85         dh_testdir
86         dh_testroot
87         rm -f build-arch-*-stamp build-indep-stamp configure-stamp
88         dh_clean
89
90 install: install-arch install-indep
91 install-indep: build-indep
92         dh_testdir
93         dh_testroot
94         dh_clean -k -i -Xdebian/tmp
95         dh_installdirs -i
96 #       Add here commands to install the indep part of the package into
97 #       debian/<package>-doc.
98         dh_install -X.svn -X.git -i
99
100 install-arch: build-arch
101         dh_testdir
102         dh_testroot
103         dh_clean -k -s -Xdebian/tmp
104         dh_installdirs -s
105 #       Add here commands to install the arch part of the package into 
106 #       debian/tmp.
107         dh_install -X.svn -X.git -s
108
109 # Must not depend on anything. This is to be called by
110 # binary-arch/binary-indep
111 # in another 'make' thread.
112 binary-common:
113         dh_testdir
114         dh_testroot
115         dh_installchangelogs
116         dh_installdocs
117         dh_installexamples
118 #       dh_installmenu
119 #       dh_installdebconf       
120 #       dh_installlogrotate     
121 #       dh_installemacsen
122 #       dh_installpam
123 #       dh_installmime
124 #       dh_python
125 #       dh_installinit
126 #       dh_installcron
127 #       dh_installinfo
128         dh_installman
129         dh_link
130         dh_strip
131         dh_compress -Xhtml -Xdoclib -Xexamples
132         dh_fixperms
133 #       dh_perl
134         dh_makeshlibs
135         dh_installdeb
136         dh_shlibdeps
137         dh_gencontrol
138         dh_md5sums
139         dh_builddeb
140
141 binary-indep: build-indep install-indep
142         $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
143
144 binary-arch: build-arch install-arch
145         $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
146
147 binary: binary-arch binary-indep
148 .PHONY: build clean binary-indep binary-arch binary install install-indep install-arch \
149         binary-arch-common binary-arch-final binary-arch-debug