Whamcloud - gitweb
LU-15918 build: update debhelper compatibility level to 11
[fs/lustre-release.git] / debian / rules
1 #!/usr/bin/make -f
2 #
3 # Created 2009 by Brian J. Murrell based on work by
4 # Alastair McKinstry, <alastair.mckinstry@ichec.ie>, <mckinstry@debian.org>
5 # Patrick Winnertz, and the pkg-lustre Debian maintainers
6 #
7 # Copying and modification is unlimited, provided that the modified
8 # version is marked as being modified.
9
10 # Uncomment this to turn on verbose mode.
11 # export DH_VERBOSE=1
12
13 DEB_BUILD_GNU_SYSTEM = $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM)
14 DEB_BUILD_GNU_CPU = $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
15
16
17 # whether to use module-assistant to build the kernel modules or not
18 USE_MA = true
19
20 # Whether to build the DKMS packages
21 BUILD_DKMS ?= false
22
23 ifeq ($(BUILD_DKMS),true)
24         DKMS_TARGET = binary-$(DKMS_PKG)
25 else
26         DKMS_TARGET =
27 endif
28
29 CFLAGS = -Wall -g
30 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
31         CFLAGS += -O0
32 else
33         CFLAGS += -O2
34 endif
35
36 # We need the kernels to be built with gcc-3.3; suspect that gcc-4.1 uses too
37 # much stack and crashes because of it.
38 #CC?=gcc-3.3
39 #export CC
40
41 # This is the debhelper compatibility version to use.
42 export DH_COMPAT=11
43
44 # Module-assistant stuff
45 ifneq (,$(findstring server,$(DEB_BUILD_PROFILES)))
46         PACKAGE=lustre-server-modules
47 else
48         PACKAGE=lustre-client-modules
49 endif
50 MA_DIR ?= /usr/share/modass
51 -include $(MA_DIR)/include/generic.make
52 -include $(MA_DIR)/include/common-rules.make
53
54 ARCH=$(shell dpkg --print-architecture)
55 TOP_DIR:=$(shell pwd)
56
57 # This is the Lustre version
58 VERSION=$(shell sed -n -e '1s/.*(\(.*\)) .*/\1/p' debian/changelog)
59 UPVERSION=$(shell echo $(VERSION) | sed -e 's/-[^-]*$$//')
60
61 # KVER is set to LINUXRELEASE being by autoconf which is either
62 # $(uname -r) or the version of the source specified by the user
63 KVER?=$(LINUXRELEASE)
64
65 # KVERS, KSRC are the kernel version and source to use when building lustre
66 # Will be the default when building lustre-{server,client}-utils, etc but whatever module-assistant
67 # supplied when building modules
68 KVERS?=$(KVER)
69 KSRC?=$(LINUX_OBJ)
70 KSRC_TREE?=$(LINUX)
71 EXTRA_OPTIONS?=$(IB_OPTIONS)
72
73 # Packages provided for both client and server builds
74 IOKIT_PKG=lustre-iokit
75 TESTS_PKG=lustre-tests
76 DEV_PKG=lustre-dev
77 SOURCE_PKG=lustre-source
78
79 # Packages that are only built for server OR client builds
80 # The difference is that server build contain more modules & utils
81 ifneq (,$(findstring server,$(DEB_BUILD_PROFILES)))
82         UTILS_PKG=lustre-server-utils
83         MODS_PKG=lustre-server-modules
84         RESOURCE_PKG=lustre-resource-agents
85         RESOURCE_TARGET=binary-$(RESOURCE_PKG)
86         DKMS_PKG=
87 else
88         UTILS_PKG=lustre-client-utils
89         MODS_PKG=lustre-client-modules
90         RESOURCE_TARGET=
91         RESOURCE_PKG=
92         DKMS_PKG=lustre-client-modules-dkms
93 endif
94
95 #Build dir
96 #BUILDDIR=debian/build
97 #SRCDIR=../..
98 # I'm afraid we seem to have broken the BUILDDIR concept in Lustre's
99 # autoconf macros
100 BUILDDIR=.
101 SRCDIR=.
102
103 AVAIL_CPUS := $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1)
104 ifneq ($(AVAIL_CPUS),1)
105       PMAKEARGS := -j $(AVAIL_CPUS)
106 endif
107
108 autogen: autogen-stamp
109 autogen-stamp: patch-stamp
110         # see if any patches requires us to run autogen
111         # (for a distribution release tarball, it is expected that if
112         #  downstream adds any patches that requires autogen.sh to be
113         #  run, a patch will be added by downstream to install the
114         #  needed autogen.sh scripts
115         #  see https://bugzilla.lustre.org/attachment.cgi?id=27156
116         #  for an example)
117         if grep -e "^--- .*\/autoconf\/" \
118                 -e "^--- .*\/autoMakefile\.am" \
119                 -e "^--- .*\/Makefile\.am" \
120                 -e "^--- .*\/configure\.ac" \
121                 -e "^--- .*\/configure\.in" \
122             debian/patches/*; then \
123                 if [ ! -f build/autogen.sh ]; then \
124                         echo "You have patches which require autogen.sh to be run, but it doesn't exist"; \
125                         echo "Please see https://bugzilla.lustre.org/attachment.cgi?id=27156"; \
126                         exit 1; \
127                 fi; \
128                 cp /usr/share/misc/config.sub config.sub; \
129                 cp /usr/share/misc/config.sub ldiskfs/config.sub; \
130                 cp /usr/share/misc/config.guess config.guess; \
131                 cp /usr/share/misc/config.guess ldiskfs/config.guess; \
132                 sh build/autogen.sh; \
133         fi; \
134         touch $@
135
136 # This section configures the lustre-utilities packages.
137 #
138 # Both client and server builds are quite similar, as the utilities build
139 # must create the modules too, to produce the "osd_<fstype>.so" libraries.
140 #
141 # The main difference is that the utilities build does not archive the
142 # modules, whereas the modules build omits the utilities, to create two
143 # neatly separated debian files.
144 #
145 # Note: KERNEL_SRC, KERNEL_OBJ, ZFS_SRC and SPL_SRC need to be set from the
146 # outside. This is done by "make debs". As such, invoking "debuild" or such
147 # direct debian build tools will lead to a client-only build.
148 configure: configure-stamp
149 configure-stamp: autogen-stamp debian/control.main debian/control.modules.in
150         dh_testdir
151         # touch files to same date, to avoid auto*
152         find . -type f -print0 | xargs -0 touch -r COPYING; \
153         if [ "$(BUILDDIR)" != "." ]; then \
154                 mkdir -p $(BUILDDIR)/build $(BUILDDIR)/lustre/contrib; \
155                 cp build/Makefile $(BUILDDIR)/build/; \
156         fi
157         # Determine flags that are different between server/client module builds
158         echo "Enabled Build Profiles: $${DEB_BUILD_PROFILES}"
159         if echo "$${DEB_BUILD_PROFILES}" | grep -q "server"; then \
160                 export EXTRAFLAGS="--enable-server"; \
161                 if echo "$${DEB_BUILD_PROFILES}" | grep -q "systemd"; then \
162                         cp debian/lustre-server-utils.install.in \
163                                 debian/lustre-server-utils.install; \
164                 else \
165                         sed /systemd/d debian/lustre-server-utils.install.in \
166                                 > debian/lustre-server-utils.install; \
167                 fi; \
168         else \
169                 export EXTRAFLAGS="--disable-server"; \
170                 if echo "$${DEB_BUILD_PROFILES}" | grep -q "systemd"; then \
171                         cp debian/lustre-client-utils.install.in \
172                                 debian/lustre-client-utils.install; \
173                 else \
174                         sed /systemd/d debian/lustre-client-utils.install.in \
175                                 > debian/lustre-client-utils.install; \
176                 fi; \
177         fi; \
178         if echo "$${DEB_BUILD_PROFILES}" | grep -q "zfs"; then \
179                 export EXTRAFLAGS="$${EXTRAFLAGS} --with-zfs=$${ZFS_SRC} --with-spl=$${SPL_SRC}"; \
180         else \
181                 export EXTRAFLAGS="$${EXTRAFLAGS} --without-zfs" ; \
182         fi; \
183         if echo "$${DEB_BUILD_PROFILES}" | grep -q "ldiskfs"; then \
184                 export EXTRAFLAGS="$${EXTRAFLAGS} \
185                         --enable-ldiskfs --enable-quilt"; \
186         else \
187                 export EXTRAFLAGS="$${EXTRAFLAGS} --disable-ldiskfs"; \
188         fi; \
189         if echo "$${DEB_BUILD_PROFILES}" | grep -q "o2ib"; then \
190                 export EXTRAFLAGS="$${EXTRAFLAGS} --with-o2ib=$${O2IB_SRC}"; \
191         fi; \
192         if echo "$${DEB_BUILD_PROFILES}" | grep -qw "gss"; then \
193                 export EXTRAFLAGS="$${EXTRAFLAGS} --enable-gss"; \
194         elif echo "$${DEB_BUILD_PROFILES}" | grep -qw "nogss"; then \
195                 export EXTRAFLAGS="$${EXTRAFLAGS} --disable-gss"; \
196         fi; \
197         if echo "$${DEB_BUILD_PROFILES}" | grep -qw "crypto"; then \
198                 export EXTRAFLAGS="$${EXTRAFLAGS} --enable-crypto"; \
199         elif echo "$${DEB_BUILD_PROFILES}" | grep -qw "nocrypto"; then \
200                 export EXTRAFLAGS="$${EXTRAFLAGS} --disable-crypto"; \
201         fi; \
202         if [ -f "$${CONFIG_CACHE_FILE}" ]; then \
203                 export TMP_CACHE_FILE=$$(mktemp); \
204                 sed -e "/ac_cv_env/d" \
205                     -e "/am_cv_CC_dependencies_compiler_type/d" \
206                     -e "/lb_cv_mpi_tests/d" \
207                        "$${CONFIG_CACHE_FILE}" > $${TMP_CACHE_FILE}; \
208                 export EXTRAFLAGS="$${EXTRAFLAGS} --cache-file=$${TMP_CACHE_FILE}"; \
209         fi; \
210         echo "Final value of EXTRAFLAGS: $${EXTRAFLAGS}"; \
211         ( cd $(BUILDDIR) && \
212                 $(SRCDIR)/configure --disable-dependency-tracking \
213                         --with-linux=$${KERNEL_SRC} \
214                         --with-linux-obj=$${KERNEL_OBJ} \
215                         --disable-snmp \
216                         --enable-quota \
217                         $${EXTRAFLAGS} \
218                         $(EXTRA_OPTIONS) \
219         ); \
220         touch $@
221
222 build-arch build-indep: build
223
224 build: build-stamp
225 build-stamp: patch-stamp configure-stamp
226         dh_testdir
227         $(MAKE) -C $(BUILDDIR) $(PMAKEARGS)
228         $(MAKE) -C $(BUILDDIR) DESTDIR=$(TOP_DIR)/debian/tmp install
229         # jump our lustre-[client|server]-modules into the control file if not using m-a
230         if ! $(USE_MA); then \
231                 (cat debian/control.main; sed -e '1,/^$$/d' -e "s/_KVERS_/$(KVER)/g" < debian/control.modules.in) > debian/control; \
232                 for file in debian/*_KVERS_*; do \
233                         newfile=$$(echo $$file | sed -e "s/_KVERS_/$(KVER)/g"); \
234                         cp $$file $$newfile; \
235                 done; \
236         fi
237         touch $@
238
239 # let's try and operate as close as the user would and not build modules
240 # here (for now)
241 # instead we will build the modules with m-a in the "make debs" target
242 # binary-arch: binary-$(UTILS_PKG) binary-$(TESTS_PKG) binary-$(DEV_PKG) \
243 # binary-$(MODS_PKG) binary-kern-mods
244 binary-arch: binary-$(UTILS_PKG) binary-$(DEV_PKG) \
245              binary-$(IOKIT_PKG) binary-$(TESTS_PKG) \
246              $(RESOURCE_TARGET)
247
248 binary-indep: binary-$(SOURCE_PKG) $(DKMS_TARGET)
249
250 binary: binary-indep binary-arch
251
252 binary-$(UTILS_PKG): build-stamp
253         dh_testdir
254         dh_testroot
255         dh_installdirs -p $(UTILS_PKG)
256         dh_installdocs -p  $(UTILS_PKG)
257         dh_installman -p $(UTILS_PKG)
258         dh_install -p $(UTILS_PKG)
259         rm -rf debian/$(UTILS_PKG)/usr/bin/iokit-* \
260                debian/$(UTILS_PKG)/usr/bin/*-survey \
261                debian/$(UTILS_PKG)/usr/bin/mcreate \
262                debian/$(UTILS_PKG)/usr/bin/munlink \
263                debian/$(UTILS_PKG)/usr/bin/statx \
264                debian/$(UTILS_PKG)/usr/sbin/wirecheck \
265                debian/$(UTILS_PKG)/usr/sbin/wiretest
266         dh_makeshlibs -p $(UTILS_PKG)
267         dh_installexamples -p $(UTILS_PKG)
268         dh_installchangelogs -p $(UTILS_PKG) lustre/ChangeLog
269         dh_compress -p $(UTILS_PKG)
270         dh_strip -p $(UTILS_PKG)
271         dh_installdeb -p $(UTILS_PKG)
272         dh_fixperms -p $(UTILS_PKG)
273         dh_gencontrol -p $(UTILS_PKG)
274         dh_md5sums -p $(UTILS_PKG)
275         dh_builddeb -p $(UTILS_PKG)
276
277 binary-$(RESOURCE_PKG): build-stamp
278         dh_testdir
279         dh_testroot
280         dh_installdirs -p $(RESOURCE_PKG)
281         dh_installdocs -p  $(RESOURCE_PKG)
282         dh_installman -p $(RESOURCE_PKG)
283         dh_install -p $(RESOURCE_PKG)
284         dh_makeshlibs -p $(RESOURCE_PKG)
285         dh_installexamples -p $(RESOURCE_PKG)
286         dh_installchangelogs -p $(RESOURCE_PKG) lustre/ChangeLog
287         dh_compress -p $(RESOURCE_PKG)
288         dh_strip -p $(RESOURCE_PKG)
289         dh_installdeb -p $(RESOURCE_PKG)
290         dh_fixperms -p $(RESOURCE_PKG)
291         dh_gencontrol -p $(RESOURCE_PKG)
292         dh_md5sums -p $(RESOURCE_PKG)
293         dh_builddeb -p $(RESOURCE_PKG)
294
295 binary-$(IOKIT_PKG): build-stamp
296         dh_testdir
297         dh_testroot
298         dh_installdirs -p $(IOKIT_PKG)
299         dh_installdocs -p  $(IOKIT_PKG)
300         dh_installman -p $(IOKIT_PKG)
301         dh_install -p $(IOKIT_PKG)
302         rm -rf debian/$(IOKIT_PKG)/usr/bin/lustre_req_history \
303                debian/$(IOKIT_PKG)/usr/bin/*ll*stat \
304                debian/$(IOKIT_PKG)/usr/bin/lfs-*
305         dh_makeshlibs -p $(IOKIT_PKG)
306         dh_installexamples -p $(IOKIT_PKG)
307         dh_installchangelogs -p $(IOKIT_PKG) lustre/ChangeLog
308         dh_compress -p $(IOKIT_PKG)
309         dh_strip -p $(IOKIT_PKG)
310         dh_installdeb -p $(IOKIT_PKG)
311         dh_fixperms -p $(IOKIT_PKG)
312         dh_gencontrol -p $(IOKIT_PKG)
313         dh_md5sums -p $(IOKIT_PKG)
314         dh_builddeb -p $(IOKIT_PKG)
315
316 binary-$(TESTS_PKG): build-stamp
317         dh_testdir
318         dh_testroot
319         dh_installdirs -p $(TESTS_PKG)
320         dh_installdocs -p  $(TESTS_PKG)
321         dh_installman -p $(TESTS_PKG)
322         dh_install -p $(TESTS_PKG)
323         dh_makeshlibs -p $(TESTS_PKG)
324         dh_installexamples -p $(TESTS_PKG)
325         dh_installchangelogs -p $(TESTS_PKG) lustre/ChangeLog
326         dh_compress -p $(TESTS_PKG)
327         dh_strip -p $(TESTS_PKG)
328         dh_installdeb -p $(TESTS_PKG)
329         dh_fixperms -p $(TESTS_PKG)
330         dh_gencontrol -p $(TESTS_PKG)
331         dh_md5sums -p $(TESTS_PKG)
332         dh_builddeb -p $(TESTS_PKG)
333
334 binary-$(DEV_PKG): build-stamp
335         dh_testdir
336         dh_testroot
337         dh_installdirs -p $(DEV_PKG)
338         dh_install -p $(DEV_PKG)
339         dh_installdocs -p $(DEV_PKG)
340         dh_installchangelogs -p $(DEV_PKG) lustre/ChangeLog
341         dh_compress -p $(DEV_PKG)
342         dh_installdeb -p $(DEV_PKG)
343         dh_fixperms -p $(DEV_PKG)
344         dh_gencontrol -p $(DEV_PKG)
345         dh_md5sums -p $(DEV_PKG)
346         dh_builddeb -p $(DEV_PKG)
347
348 binary-$(SOURCE_PKG): build-stamp
349         dh_testdir 
350         dh_testroot
351         # Copy everything 
352         dh_installdirs -p $(SOURCE_PKG) usr/src/modules/lustre/debian
353         rsync -av --exclude='debian/$(SOURCE_PKG)/*' \
354               --link-dest=$(PWD) \
355               . debian/$(SOURCE_PKG)/usr/src/modules/lustre
356         # Remove FULLCLEAN setting
357         rm debian/$(SOURCE_PKG)/usr/src/modules/lustre/debian/rules
358         cp -v debian/rules debian/$(SOURCE_PKG)/usr/src/modules/lustre/debian/rules
359         sed -i -e 's/FULLCLEAN=full-clean/FULLCLEAN=/' debian/$(SOURCE_PKG)/usr/src/modules/lustre/debian/rules
360         # clean up dest
361         rm -rf debian/$(SOURCE_PKG)/usr/src/modules/lustre/debian/patched \
362                debian/$(SOURCE_PKG)/usr/src/modules/lustre/debian/patches/* 
363         $(MAKE) -C debian/$(SOURCE_PKG)/usr/src/modules/lustre -f debian/rules clean
364         # Create the module-source tarball.
365         cd debian/$(SOURCE_PKG)/usr/src && tar --exclude-vcs -jcf lustre-$${SRC_GIT_HASH}.tar.bz2 modules
366         rm -rf debian/$(SOURCE_PKG)/usr/src/modules
367         dh_install -p$(SOURCE_PKG)
368         dh_installchangelogs -p $(SOURCE_PKG) lustre/ChangeLog
369         dh_installdocs -p $(SOURCE_PKG) 
370         dh_link -p $(SOURCE_PKG) /usr/share/modass/packages/default.sh /usr/share/modass/overrides/lustre-source
371         dh_compress -p $(SOURCE_PKG)
372         dh_installdeb -p $(SOURCE_PKG)
373         dh_fixperms -p $(SOURCE_PKG)
374         dh_gencontrol -p $(SOURCE_PKG)
375         dh_md5sums -p $(SOURCE_PKG)
376         dh_builddeb -p $(SOURCE_PKG)
377
378 binary-$(DKMS_PKG): build-stamp
379         dh_testdir
380         dh_testroot
381         # Create /usr/src/lustre-client-modules-<version>
382         dh_installdirs -p $(DKMS_PKG) usr/src/lustre-client-modules-$(UPVERSION)
383         # Copy the source
384         rsync -av --exclude='debian/$(DKMS_PKG)/*' --exclude='.git/' \
385                 --link-dest=$(PWD) \
386                 . debian/$(DKMS_PKG)/usr/src/lustre-client-modules-$(UPVERSION)
387         # Clean it up
388         $(MAKE) -C debian/$(DKMS_PKG)/usr/src/lustre-client-modules-$(UPVERSION) -f debian/rules clean
389
390         # Put the DKMS configuration file in place
391         sed -e 's/[@]UPVERSION[@]/$(UPVERSION)/' debian/dkms.conf.in > debian/$(DKMS_PKG)/usr/src/lustre-client-modules-$(UPVERSION)/dkms.conf
392         dh_install -p $(DKMS_PKG)
393         dh_installchangelogs -p $(DKMS_PKG) lustre/ChangeLog
394         dh_installdocs -p $(DKMS_PKG)
395         dh_compress -p $(DKMS_PKG)
396         dh_installdeb -p $(DKMS_PKG)
397         dh_strip -p $(DKMS_PKG)
398         dh_fixperms -p $(DKMS_PKG)
399         dh_gencontrol -p $(DKMS_PKG)
400         dh_md5sums -p $(DKMS_PKG)
401         dh_builddeb -p $(DKMS_PKG)
402
403 # if only we could use m-a for this, but this stupid "compliant.list"
404 # thing fouls that up
405 binary-kern-mods:
406         # Build client or server modules
407         mkdir -p debian/m-a_root/usr_src/modules
408         ln -s ../../../../ debian/m-a_root/usr_src/modules/lustre
409         m-a -t -u debian/m-a_root/ -d -v -k $(KSRC) build lustre
410         mv -f debian/m-a_root/*.deb ..
411
412 # an alternative (to module-assistant) method of building the kernel modules
413 binary-$(MODS_PKG): build-stamp
414         if ! $(USE_MA); then \
415                 cp debian/$(MODS_PKG).install debian/$(MODS_PKG)-$(KVER).install ; \
416                 dh_testdir; \
417                 dh_testroot; \
418                 dh_installdirs -p $(MODS_PKG)-$(KVER); \
419                 dh_installdocs -p $(MODS_PKG)-$(KVER); \
420                 dh_install -p $(MODS_PKG)-$(KVER); \
421                 dh_makeshlibs -p $(MODS_PKG)-$(KVER); \
422                 dh_installchangelogs -p $(MODS_PKG)-$(KVER) lustre/ChangeLog; \
423                 dh_compress -p $(MODS_PKG)-$(KVER); \
424                 dh_installdeb -p $(MODS_PKG)-$(KVER); \
425                 dh_strip -p $(MODS_PKG)-$(KVER); \
426                 dh_fixperms -p $(MODS_PKG)-$(KVER); \
427                 dh_gencontrol -p $(MODS_PKG)-$(KVER); \
428                 dh_md5sums -p $(MODS_PKG)-$(KVER); \
429                 dh_builddeb -p $(MODS_PKG)-$(KVER); \
430         fi
431
432
433 ###
434 ### For module-assistant
435 ###
436
437 # the kdist_clean target is called by make-kpkg modules_clean and from
438 # kdist* rules. It is responsible for cleaning up any changes that have
439 # been made by the other kdist_commands (except for the .deb files created)
440
441 kdist_clean: 
442         # can't dh_clean here or we remove the build artifacts for the other packages
443         # still in progress
444         #dh_clean
445         #-$(MAKE) $(MFLAGS) -f debian/rules clean
446         # put the userspace tools' control file back
447         cp debian/control.main debian/control
448
449
450 # module assistant calculates all needed things for us and sets
451 # # following variables:
452 # # KSRC (kernel source directory), KVERS (kernel version string), KDREV
453 # # (revision of the Debian kernel-image package), CC (the correct
454 # # compiler), VERSION (the final package version string), PKGNAME (full
455 # # package name with KVERS included), DEB_DESTDIR (path to store DEBs)
456 #
457 # # The kdist_configure target is called by make-kpkg modules_config and
458 # # by kdist* rules by dependency. It should configure the module so it is
459 # # ready for compilation (mostly useful for calling configure).
460 # # prep-deb-files from module-assistant creates the neccessary debian/ 
461 kdist_config: prep-deb-files patch-stamp
462         #  Check build dependencies again, needs to be done since we just
463         # replaced the control file.
464         dpkg-checkbuilddeps
465         # Prepare the kernel to lustres' liking
466         # as non-root, we won't have permission for this
467         #-$(MAKE) -C $(KSRC) prepare scripts
468         # touch files to same date, to avoid auto*
469         find . -type f -print0 | xargs -0 touch -r COPYING \;
470         # Determine flags that are different between server/client module builds
471         # Note: It doesn't seem possible to *only* build modules.
472         echo "Enabled Build Profiles: $${DEB_BUILD_PROFILES}"
473         if echo "$${DEB_BUILD_PROFILES}" | grep -q "server"; then \
474                 export EXTRAFLAGS="--enable-server"; \
475         else \
476                 export EXTRAFLAGS="--disable-server"; \
477         fi; \
478         if echo "$${DEB_BUILD_PROFILES}" | grep -q "zfs"; then \
479                 export EXTRAFLAGS="$${EXTRAFLAGS} --with-zfs=$${ZFS_SRC} --with-spl=$${SPL_SRC}"; \
480         else \
481                 export EXTRAFLAGS="$${EXTRAFLAGS} --without-zfs" ; \
482         fi; \
483         if echo "$${DEB_BUILD_PROFILES}" | grep -q "ldiskfs"; then \
484                 export EXTRAFLAGS="$${EXTRAFLAGS} \
485                         --enable-ldiskfs --enable-quilt"; \
486         else \
487                 export EXTRAFLAGS="$${EXTRAFLAGS} \
488                         --disable-ldiskfs --disable-quilt"; \
489         fi; \
490         if echo "$${DEB_BUILD_PROFILES}" | grep -q "o2ib"; then \
491                 export EXTRAFLAGS="$${EXTRAFLAGS} --with-o2ib=$${O2IB_SRC}"; \
492         fi; \
493         if echo "$${DEB_BUILD_PROFILES}" | grep -qw "crypto"; then \
494                 export EXTRAFLAGS="$${EXTRAFLAGS} --enable-crypto"; \
495         elif echo "$${DEB_BUILD_PROFILES}" | grep -qw "nocrypto"; then \
496                 export EXTRAFLAGS="$${EXTRAFLAGS} --disable-crypto"; \
497         fi; \
498         if [ -f "$${CONFIG_CACHE_FILE}" ]; then \
499                 export TMP_CACHE_FILE=$$(mktemp --tmpdir newconfig-XXXXXXXX.cache); \
500                 sed -e "/ac_cv_env/d" \
501                     -e "/am_cv_CC_dependencies_compiler_type/d" \
502                     -e "/lb_cv_mpi_tests/d" \
503                        "$${CONFIG_CACHE_FILE}" > $${TMP_CACHE_FILE}; \
504                 export EXTRAFLAGS="$${EXTRAFLAGS} --cache-file=$${TMP_CACHE_FILE}"; \
505         fi; \
506         echo "Final value of EXTRAFLAGS: $${EXTRAFLAGS}"; \
507         ./configure --with-linux=$(KSRC_TREE) \
508                 --with-linux-obj=$(KSRC) \
509                 --disable-dependency-tracking \
510                 --disable-doc  \
511                 --disable-iokit \
512                 --disable-snmp \
513                 --disable-tests \
514                 --enable-quota \
515                 --with-kmp-moddir=updates \
516                 $${EXTRAFLAGS} \
517                 $(EXTRA_OPTIONS)
518
519
520 kdist_configure: kdist_config
521
522 # the binary-modules rule is invoked by module-assistant while processing the
523 # kdist* targets. It is called by module-assistant or make-kpkg and *not*
524 # during a normal build
525 binary-modules: prep-deb-files
526         dh_testroot
527         dh_prep
528         $(MAKE) $(PMAKEARGS)
529         $(MAKE) install DESTDIR=$(CURDIR)/debian/$(PKGNAME)
530         # Remove stuff that doesn't belong (no module-only target)
531         cd $(CURDIR)/debian/$(PKGNAME) && rm -rf usr/bin usr/sbin usr/lib usr/share usr/include/lustre lib/systemd sbin etc
532         dh_installdocs -p$(PKGNAME)
533         dh_installchangelogs -p$(PKGNAME)
534         dh_installmodules -p $(PKGNAME)
535         dh_compress -p $(PKGNAME)
536         dh_fixperms -p $(PKGNAME)
537         dh_installdeb -p $(PKGNAME)
538         dh_gencontrol -- -v$(VERSION)
539         dh_md5sums -p $(PKGNAME)
540         dh_builddeb --destdir=$(DEB_DESTDIR) -p $(PKGNAME)
541         dh_prep -p $(PKGNAME)
542
543 clean:
544         dh_testdir
545         dh_testroot
546         dpatch deapply-all -v
547         -$(MAKE) distclean
548         rm -rf  debian/substvars debian/*.bak debian/*~ *~  *-stamp
549         ls -d debian/lustre-*-modules-* | grep -v _KVERS_ | grep -v dkms | xargs rm -f || true
550         # only remove this if the clean was not called from kdist_clean
551         if [ "$$MA_SOURCE_PKG" = "" ]; then \
552                 rm -rf  debian/m-a_root; \
553         fi
554         dh_clean
555         # make sure we have at least a basic control in place (see build-stamp)
556         rm -f debian/control
557         cp debian/control.main debian/control
558
559 patch: patch-stamp
560 patch-stamp:
561         dpatch apply-all -v
562         touch $@
563
564 unpatch:
565         dpatch deapply-all -v
566         rm -rf debian/patched patch-stamp
567
568 .PHONY: binary-arch clean source diff  binary binary-indep binary-arch install configure