distclean to wipe BUILDROOT
[build.git] / Makefile
1 #
2 # Thierry Parmentelat - INRIA Sophia Antipolis 
3 #
4 ### $Id$
5
6 ####################
7 # invocation:
8 #
9 # (*) make stage1=true
10 #     this extracts all specfiles and computes .mk from specfiles
11 #     you need to specify PLDISTRO here if relevant - see below
12 # (*) make help
13 #     for more info on how to invoke this stuff
14 #
15 #################### (fedora) distributions
16 #
17 # (*) as of nov. 2007, myplc-devel is deprecated
18 # (*) instead, we create a fresh vserver that holds required tools (see e.g. planetlab-devel.lst)
19 # (*) the build uses the current fedora version as a target for the produced images
20 # (*) so you simply need to create a fedora 8 build image for building fedora-8 images 
21 #     
22 #################### (planetlab) distributions
23 #
24 # (*) see README-pldistros.txt
25 # (*) then you need to run 
26 #     make stage1=true PLDISTRO=onelab
27 #
28 #################### 
29 # This build deals with 3 kinds of objects
30
31 # (*) packages are named upon the RPM name; they are mostly lowercase
32 #     Add a package to ALL if you want it built as part of the default set.
33 # (*) modules are named after the subversion tree; as of this writing their names 
34 #     are mostly mixed case like MyPLC or VserverReference
35 # (*) rpms are named in the spec files. A package typically defines several rpms;
36 #     rpms are used for defining DEPEND-DEVEL-RPMS. See also package.rpmnames
37
38 #################### packages
39 # basics: how to build a package - you need/may define the following variables
40
41 # (*) package-MODULES
42 #     a package needs one or several modules to build. 
43 #     to this end, define 
44 # (*) package-SPEC
45 #     the package's specfile; this is relative to the FIRST module in package-MODULES
46 #     see 'codebase' below
47 #
48 # Optional:
49 #
50 # (*) package-SPECVARS
51 #     space-separated list of spec variable definitions, where you can reference make variable that relate to 
52 #     packages defined BEFORE the current one (note: you should use = - as opposed to := - to define these)
53 #     e.g. mydriver-SPECVARS = foo=$(kernel-rpm-release) 
54 #     would let you use the %release from the kernel's package when rpmbuild'ing mydriver - see automatic below
55 # (*) package-DEPEND-PACKAGES
56 #     a set of *packages* that this package depends on
57 # (*) package-DEPEND-DEVEL-RPMS
58 #     a set of *rpms* that the build will rpm-install before building <package>
59 #     the build will attempt to uninstall those once the package is built, this is not fatal though
60 #     this is intended to denote local rpms, i.e. ones that are results of our own build
61 #     stock rpms should be mentioned in config.planetlab/devel.pkgs
62 # (*) package-DEPEND-FILES
63 #     a set of files that the package depends on - and that make needs to know about
64 #     if this contains RPMS/yumgroups.xml, then the toplevel RPMS's index 
65 #     is refreshed with createrepo prior to running rpmbuild
66 # (*) package-EXCLUDE-DEVEL-RPMS
67 #     a set of *rpms* that the build will rpm-uninstall before building <package>
68 #     this is intended to denote stock rpms, and the build will attempt to yum-install them
69 #     back after the package is rebuilt
70 # (*) package-RPMFLAGS: Miscellaneous RPM flags
71 # (*) package-RPMBUILD: If not rpmbuild - mostly used for sudo'ing rpmbuild
72 # (*) package-BUILD-FROM-SRPM: set this to any non-empty value, if your package is able to produce 
73 #     a source rpms by running 'make srpm'
74 # (*) package-RPMDATE: set this to any non-empty value to get the rpm package's release field hold the current date
75 #     this is useful for container packages, like e.g. bootstrapfs or vserver, that contains much more than the
76 #     correspondng module
77 #
78 #################### modules
79 # Required information about the various modules (set this in e.g. planetlab-tags.mk)
80 #
81 # (*) module-SVNPATH
82 #     the complete path where this module lies; 
83 #     you can specify the trunk or a given tag with this variable
84
85 # OR if the module is managed under cvs (will be obsoleted)
86
87 # (*) module-CVSROOT
88 # (*) module-TAG
89 #
90 #################### automatic variables
91 #
92 # the build defines some make variables that are extracted from spec files
93 # see for example
94 # (*)  $ make ulogd-pkginfo
95 #        to see the list f variables attached to a given package
96 # (*)  $ make kernel-devel-rpminfo
97 #        to see the list of variables attached to a given rpm
98 #
99 ####################
100
101 # exported to spec files as plrelease
102 PLANETLAB_RELEASE = 4.3
103
104 #
105 # Default values
106 #
107 # minimal compat with macos, just so this does not complain 
108 HOSTARCH := $(shell uname -i 2> /dev/null || uname -m 2> /dev/null)
109 DISTRO := $(shell ./getdistro.sh)
110 RELEASE := $(shell ./getrelease.sh)
111 DISTRONAME := $(shell ./getdistroname.sh)
112 RPM-INSTALL-DEVEL := rpm --force -Uvh
113 # uninstall -- cannot force rpm -e
114 # need to ignore result, kernel-headers cannot be uninstalled as glibc depends on it
115 RPM-UNINSTALL-DEVEL := rpm -e
116 YUM-INSTALL-DEVEL := yum -y install
117
118 # see also below
119 REMOTE-PLDISTROS="wextoolbox"
120
121 #################### Makefile
122 # Default target
123 all:
124 .PHONY:all
125
126 ### default values
127 PLDISTRO := planetlab
128 RPMBUILD := rpmbuild
129 export CVS_RSH := ssh
130
131 ########## savedpldistro.mk holds PLDISTRO - it is generated at stage1 (see below)
132 ifeq "$(stage1)" ""
133 include savedpldistro.mk
134 endif
135
136 # when re-running the nightly build after failure, we need to gather the former values
137 # do this by running make stage1=skip +PLDISTRO
138 ifeq "$(stage1)" "skip"
139 include savedpldistro.mk
140 endif
141
142 #################### include onelab.mk
143 # describes the set of components
144 PLDISTROCONTENTS := $(PLDISTRO).mk
145 include $(PLDISTROCONTENTS)
146
147 #################### include <pldistro>-tags.mk
148 # describes where to fetch components, and the related tags if using cvs
149 PLDISTROTAGS := $(PLDISTRO)-tags.mk
150 include $(PLDISTROTAGS)
151
152 # this used to be set in the -tags.mk files, but that turned out to require
153 # error-prone duplicate changes 
154 # so now the nightly build script sets this to what it is currently using
155 # we set a default in case we run the build manually:
156 # if the local directory was svn checked out, then use the corresponding URL
157 svn-info-url-line := $(shell svn info 2> /dev/null | grep URL:)
158 default-build-SVNPATH := $(lastword $(svn-info-url-line))
159 # otherwise, use this hard-coded default
160 ifeq "$(default-build-SVNPATH)" ""
161 default-build-SVNPATH := http://svn.planet-lab.org/svn/build/trunk
162 endif
163 # use default if necessary
164 build-SVNPATH ?= $(default-build-SVNPATH)
165
166 ####################
167 define remote_pldistro
168 $(1).mk: config.$(1)/$(1).mk
169         @echo 'creating $(1) from config subdir'
170         cp config.$(1)/$(1).mk $(1).mk
171
172 $(2).mk: config.$(1)/$(2).mk
173         @echo 'creating $(1) tags from config subdir'
174         cp config.$(1)/$(2).mk $(2).mk
175
176 config.$(1)/$(1).mk: config.$(1)
177 config.$(1)/$(2).mk: config.$(1)
178
179 config.$(1): config.$(1).svnpath
180         @echo "Fetching details for pldistro $(1)"
181         svn export $(shell grep -v "^#" config.$(1).svnpath) config.$(1)
182
183 DISTCLEANS += $(1).mk $(2).mk config.$(1)
184
185 endef
186
187 # somehow this does not work, handle manually instead
188 #$(foreach distro, $(REMOTE-PLDISTROS), $(eval $(call remote_pldistro,$(distro),$(distro)-tags)))
189 $(eval $(call remote_pldistro,wextoolbox,wextoolbox-tags))
190
191 ########## stage1 and stage1iter
192 # extract specs and compute .mk files by running 
193 # make stage1=true
194 # entering stage1, we compute all the spec files
195 # then we use stage1iter to compute the .mk iteratively, 
196 # ensuring that the n-1 first makefiles are loaded when creating the n-th one
197 # when stage1iter is set, it is supposed to be an index (starting at 1) in $(ALL)
198
199 ALLMKS := $(foreach package, $(ALL), MAKE/$(package).mk)
200
201 ### stage1iter : need some arithmetic, see
202 # http://www.cmcrossroads.com/articles/ask-mr.-make/learning-gnu-make-functions-with-arithmetic.html
203 ifneq "$(stage1iter)" ""
204 # the first n packages
205 packages := $(wordlist 1,$(words $(stage1iter)),$(ALL))
206 # the n-th package
207 package := $(word $(words $(packages)),$(packages))
208 # the n-1 first packages
209 stage1iter_1 := $(wordlist 2,$(words $(stage1iter)),$(stage1iter))
210 previous := $(wordlist 1,$(words $(stage1iter_1)),$(ALL))
211 previousmks := $(foreach package,$(previous),MAKE/$(package).mk)
212 include $(previousmks)
213 all: verbose
214 verbose:
215         @echo "========== stage1iter : $(package)"
216 #       @echo "stage1iter : included .mk files : $(previousmks)"
217 all: $($(package).specpath)
218 all: MAKE/$(package).mk
219 else
220 ### stage1
221 ifneq "$(stage1)" ""
222 all : verbose
223 verbose :
224         @echo "========== stage1"
225 all : spec2make
226 all : .rpmmacros
227 # specs and makes are done sequentially by stage1iter
228 all : stage1iter
229 stage1iter:
230         arg=""; for n in $(ALL) ; do arg="$$arg x"; $(MAKE) --no-print-directory stage1iter="$$arg"; done
231 ### regular make
232 else
233 ### once .mks are OK, you can run make normally
234 include $(ALLMKS)
235 #all : tarballs
236 #all : sources
237 #all : codebases
238 #all : rpms
239 #all : srpms
240 # mention $(ALL) here rather than rpms 
241 # this is because the inter-package dependencies are expressed like
242 # util-vserver: util-python
243 all: rpms
244 all: repo
245 endif
246 endif
247
248 ### yumgroups.xml : compute from all known .pkgs files
249 RPMS/yumgroups.xml: 
250         mkdir -p RPMS
251         ./yumgroups.sh $(PLDISTRO) > $@
252
253 createrepo = createrepo --quiet -g yumgroups.xml RPMS/ 
254
255 repo: RPMS/yumgroups.xml
256         $(createrepo)
257
258 .PHONY: repo
259
260 ####################
261 # notes: 
262 # * to make configuration easier, we always use the first module's
263 # definitions (CVSROOT,TAG, or SVNPATH) to extract the spec file
264 # * for the same reason, in case cvs is used, the first module name is added to 
265 # $(package)-SPEC - otherwise the cvs modules have to define spec as 
266 # <module>/<module>.spec while svn modules just define it as <module>.spec
267 #
268 define stage1_package_vars
269 $(1).spec := $(notdir $($(1)-SPEC))
270 $(1).specpath := SPECS/$(1).spec
271 $(1).module := $(firstword $($(1)-MODULES))
272 endef
273
274 $(foreach package, $(ALL), $(eval $(call stage1_package_vars,$(package))))
275
276 # compute all modules
277 ALL-MODULES :=
278 $(foreach package,$(ALL), $(eval ALL-MODULES+=$($(package)-MODULES)))
279 ALL-MODULES:=$(sort $(ALL-MODULES))
280
281 # extract revision from -SVNPATH
282 define stage1_module_vars
283 $(1)-SVNPATH := $(strip $($(1)-SVNPATH))
284 $(1).svnpath := $(firstword $(subst @, ,$($(1)-SVNPATH)))
285 $(1).svnrev := $(word 2,$(subst @, @,$($(1)-SVNPATH)))
286 endef
287
288 $(foreach module,$(ALL-MODULES), $(eval $(call stage1_module_vars,$(module))))
289
290 #
291 # for each package, compute whether we need to set date 
292 # the heuristic is that we mention the date as part of the rpm release flag if
293 # (*) the package has requested it by setting package-RPMDATE (container packages should do that)
294 # (*) or SVNPATH contains 'trunk' or 'branches' 
295
296 define package_hasdate
297 $(1).has-date = $(if $($(1)-RPMDATE),yes, \
298                   $(if $($($(1).module)-SVNPATH), \
299                      $(if $(findstring /trunk,$($($(1).module)-SVNPATH)),yes, \
300                         $(if $(findstring /branches,$($($(1).module)-SVNPATH)),yes,)), \
301                      $(if $(findstring HEAD,$($($(1).module)-TAG)),yes,)))
302 endef
303
304 $(foreach package, $(ALL), $(eval $(call package_hasdate,$(package))))
305
306 ### the common header for generated specfiles
307 # useful when trying new specfiles manually
308 header.spec:
309         (echo -n "# Generated by planetlab build from $($(1)-SPEC) on " ; date) > $@
310         echo "%define distro $(DISTRO)" >> $@
311         echo "%define distrorelease $(RELEASE)" >> $@
312         echo "%define distroname $(DISTRONAME)" >> $@
313         echo "%define pldistro $(PLDISTRO)" >> $@
314         echo "%define plrelease $(PLANETLAB_RELEASE)" >> $@
315
316 ### extract spec file from scm
317 define target_spec
318 $($(1).specpath): header.spec
319         mkdir -p SPECS
320         cat header.spec > $($(1).specpath)
321         $(if $($(1).has-date),echo "%define date $(shell date +%Y.%m.%d)" >> $($(1).specpath),)
322         $(if $($(1)-SPECVARS), \
323           $(foreach line,$($(1)-SPECVARS), \
324             echo "%define" $(word 1,$(subst =, ,$(line))) "$(word 2,$(subst =, ,$(line)))" >> $($(1).specpath) ;))
325         echo "# included from $($(1)-SPEC)" >> $($(1).specpath)
326         $(if $($($(1).module)-SVNPATH),\
327           svn cat $($($(1).module).svnpath)/$($(1)-SPEC)$($($(1).module).svnrev) >> $($(1).specpath) || rm $($(1).specpath),\
328           cvs -d $($($(1).module)-CVSROOT) checkout \
329               -r $($($(1).module)-TAG) \
330               -p $($(1).module)/$($(1)-SPEC) >> $($(1).specpath))
331 endef
332
333 $(foreach package,$(ALL),$(eval $(call target_spec,$(package))))
334
335 ###
336 # Base rpmbuild in the current directory
337 # issues on fedora 8 : see the following posts
338 # http://forums.fedoraforum.org/showthread.php?t=39625 - and more specifically post#6
339 # https://www.redhat.com/archives/fedora-devel-list/2007-November/msg00171.html
340 REALROOT=/build
341 FAKEROOT=/longbuildroot
342 PWD=$(shell /bin/pwd)
343 ifeq "$(PWD)" "$(REALROOT)"
344 export HOME := $(FAKEROOT)
345 else
346 export HOME := $(PWD)
347 endif
348 .rpmmacros:
349 ifeq "$(shell pwd)" "/build"
350         rm -f $(FAKEROOT) ; ln -s $(REALROOT) $(FAKEROOT)
351 endif
352         rm -f $@ 
353         echo "%_topdir $(HOME)" >> $@
354         echo "%_tmppath $(HOME)/tmp" >> $@
355         echo "%__spec_install_pre %{___build_pre}" >> $@
356         ./getrpmmacros.sh >> $@
357
358 ### this utility allows to extract various info from a spec file
359 ### and to define them in makefiles
360 spec2make: spec2make.c
361         $(CC) -g -Wall $< -o $@ -lrpm -lrpmbuild
362
363 ### run spec2make on the spec file and include the result
364 # usage: spec2make package
365 define target_mk
366 MAKE/$(1).mk: $($(1).specpath) spec2make .rpmmacros
367         mkdir -p MAKE
368         ./spec2make $($(1)-RPMFLAGS) $($(1).specpath) $(1) > MAKE/$(1).mk || { rm MAKE/$(1).mk; exit 1; }
369 endef
370
371 $(foreach package,$(ALL),$(eval $(call target_mk,$(package))))
372
373 # stores PLDISTRO in a file
374 # this is done at stage1. later run wont get confused
375 savedpldistro.mk:
376         echo "PLDISTRO:=$(PLDISTRO)" > $@
377         echo "PLDISTROTAGS:=$(PLDISTROTAGS)" >> $@
378         echo "build-SVNPATH:=$(build-SVNPATH)" >> $@
379         echo "PERSONALITY:=$(PERSONALITY)" >> $@
380         echo "MAILTO:=$(MAILTO)" >> $@
381         echo "BASE:=$(BASE)" >> $@
382         echo "WEBPATH:=$(WEBPATH)" >> $@
383         echo "TESTBUILDURL:=$(TESTBUILDURL)" >> $@
384         echo "WEBROOT:=$(WEBROOT)" >> $@
385
386 savedpldistro: savedpldistro.mk
387 .PHONY: savedpldistro
388
389 # always refresh this
390 all: savedpldistro
391
392 #################### regular make
393
394 define stage2_variables
395 ### devel dependencies
396 $(1).rpmbuild = $(if $($(1)-RPMBUILD),$($(1)-RPMBUILD),$(RPMBUILD)) $($(1)-RPMFLAGS)
397 $(1).all-devel-rpm-paths := $(foreach rpm,$($(1)-DEPEND-DEVEL-RPMS),$($(rpm).rpm-path))
398 $(1).depend-devel-packages := $(sort $(foreach rpm,$($(1)-DEPEND-DEVEL-RPMS),$($(rpm).package)))
399 ALL-DEVEL-RPMS += $($(1)-DEPEND-DEVEL-RPMS)
400 endef
401
402 $(foreach package,$(ALL),$(eval $(call stage2_variables,$(package))))
403 ALL-DEVEL-RPMS := $(sort $(ALL-DEVEL-RPMS))
404
405
406 ### pack sources into tarballs
407 ALLTARBALLS:= $(foreach package, $(ALL), $($(package).tarballs))
408 tarballs: $(ALLTARBALLS)
409         @echo $(words $(ALLTARBALLS)) source tarballs OK
410 .PHONY: tarballs
411
412 SOURCES/%.tar.bz2: SOURCES/%
413         tar chpjf $@ -C SOURCES $*
414
415 SOURCES/%.tar.gz: SOURCES/%
416         tar chpzf $@ -C SOURCES $*
417
418 SOURCES/%.tgz: SOURCES/%
419         tar chpzf $@ -C SOURCES $*
420
421 ##
422 URLS/%: url=$(subst @colon@,:,$(subst @slash@,/,$(notdir $@)))
423 URLS/%: basename=$(notdir $(url))
424 URLS/%: 
425         echo curl $(url) -o SOURCES/$(basename)
426         touch $@
427
428 ### the directory SOURCES/<package>-<version> is made 
429 # with a copy -rl from CODEBASES/<package>
430 # the former is $(package.source) and the latter is $(package.codebase)
431 ALLSOURCES:=$(foreach package, $(ALL), $($(package).source))
432 # so that make does not use the rule below directly for creating the tarball files
433 .SECONDARY: $(ALLSOURCES)
434
435 sources: $(ALLSOURCES)
436         @echo $(words $(ALLSOURCES)) versioned source trees OK
437 .PHONY: sources
438
439 define target_link_codebase_sources
440 $($(1).source): $($(1).codebase) ; mkdir -p SOURCES ; cp -rl $($(1).codebase) $($(1).source)
441 endef
442
443 $(foreach package,$(ALL),$(eval $(call target_link_codebase_sources,$(package))))
444
445 ### codebase extraction
446 ALLCODEBASES:=$(foreach package, $(ALL), $($(package).codebase))
447 # so that make does not use the rule below directly for creating the tarball files
448 .SECONDARY: $(ALLCODEBASES)
449
450 codebases : $(ALLCODEBASES)
451         @echo $(words $(ALLCODEBASES)) codebase OK
452 .PHONY: codebases
453
454 ### extract codebase 
455 # usage: extract_single_module package 
456 define extract_single_module
457         mkdir -p CODEBASES
458         $(if $($($(1).module)-SVNPATH), cd CODEBASES && svn export $($($(1).module)-SVNPATH) $(1), cd CODEBASES && cvs -d $($($(1).module)-CVSROOT) export -r $($($(1).module)-TAG) -d $(1) $($(1).module))
459 endef
460
461 # usage: extract_multi_module package 
462 define extract_multi_module
463         mkdir -p CODEBASES/$(1) && cd CODEBASES/$(1) && (\
464         $(foreach m,$($(1)-MODULES), $(if $($(m)-SVNPATH), svn export $($(m)-SVNPATH) $(m);, cvs -d $($(m)-CVSROOT) export -r $($(m)-TAG) $(m);)))
465 endef
466
467 CODEBASES/%: package=$(notdir $@)
468 CODEBASES/%: multi_module=$(word 2,$($(package)-MODULES))
469 CODEBASES/%: 
470         @(echo -n "XXXXXXXXXXXXXXX -- BEG CODEBASE $(package) : $@ " ; date)
471         $(if $(multi_module),\
472           $(call extract_multi_module,$(package)),\
473           $(call extract_single_module,$(package)))
474         @(echo -n "XXXXXXXXXXXXXXX -- END CODEBASE $(package) : $@ " ; date)
475
476 ### source rpms
477 ALLSRPMS:=$(foreach package,$(ALL),$($(package).srpm))
478 srpms: $(ALLSRPMS)
479         @echo $(words $(ALLSRPMS)) source rpms OK
480 .PHONY: srpms
481
482 ### these macro handles the DEPEND-DEVEL-RPMS and EXCLUDE-DEVEL-RPMS tags for a hiven package
483 # before building : rpm-install DEPEND-DEVEL-RPMS and rpm-uninstall EXCLUDE
484 define handle_devel_rpms_pre 
485         $(if $($(1).all-devel-rpm-paths), echo "Installing for $(1)-DEPEND-DEVEL-RPMS" ; $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths)) 
486         $(if $($(1)-EXCLUDE-DEVEL-RPMS), echo "Uninstalling for $(1)-EXCLUDE-DEVEL-RPMS" ; $(RPM-UNINSTALL-DEVEL) $($(1)-EXCLUDE-DEVEL-RPMS))
487 endef
488
489 define handle_devel_rpms_post
490         -$(if $($(1)-DEPEND-DEVEL-RPMS), echo "Unstalling for $(1)-DEPEND-DEVEL-RPMS" ; $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
491         $(if $($(1)-EXCLUDE-DEVEL-RPMS), "Reinstalling for $(1)-EXCLUDE-DEVEL-RPMS" ; $(YUM-INSTALL-DEVEL) $($(1)-EXCLUDE-DEVEL-RPMS) )
492 endef
493
494 # usage: target_source_rpm package
495 define target_source_rpm 
496 ifeq "$($(1)-BUILD-FROM-SRPM)" ""
497 $($(1).srpm): $($(1).specpath) .rpmmacros $($(1).tarballs) 
498         mkdir -p BUILD SRPMS tmp
499         @(echo -n "XXXXXXXXXXXXXXX -- BEG SRPM $(1) (using SOURCES) " ; date)
500         $(call handle_devel_rpms_pre,$(1))
501         $($(1).rpmbuild) -bs $($(1).specpath)
502         $(call handle_devel_rpms_post,$(1))
503         @(echo -n "XXXXXXXXXXXXXXX -- END SRPM $(1) " ; date)
504 else
505 $($(1).srpm): $($(1).specpath) .rpmmacros $($(1).codebase)
506         mkdir -p BUILD SRPMS tmp
507         @(echo -n "XXXXXXXXXXXXXXX -- BEG SRPM $(1) (using make srpm) " ; date)
508         $(call handle_devel_rpms_pre,$(1))
509         make -C $($(1).codebase) srpm SPECFILE=$(HOME)/$($(1).specpath) EXPECTED_SRPM=$(notdir $($(1).srpm)) && \
510            rm -f SRPMS/$(notdir $($(1).srpm)) && \
511            ln $($(1).codebase)/$(notdir $($(1).srpm)) SRPMS/$(notdir $($(1).srpm)) 
512         $(call handle_devel_rpms_post,$(1))
513         @(echo -n "XXXXXXXXXXXXXXX -- END SRPM $(1) " ; date)
514 endif
515 endef
516
517 $(foreach package,$(ALL),$(eval $(call target_source_rpm,$(package))))
518
519 ### binary rpms are made from source rpm
520 ALLRPMS:=$(foreach package,$(ALL),$($(package).rpms))
521 # same as above, mention $(ALL) and not $(ALLRPMS)
522 rpms: $(ALLRPMS)
523         @echo $(words $(ALLRPMS)) binary rpms OK
524 .PHONY: rpms
525
526 # use tmp dirs when building binary rpm so make remains idempotent 
527 # otherwise SOURCES/ or SPEC gets touched again - which leads to rebuilding
528 RPM-USE-TMP-DIRS = --define "_sourcedir $(HOME)/tmp" --define "_specdir $(HOME)/tmp"
529 RPM-USE-COMPILE-DIRS = --define "_sourcedir $(HOME)/COMPILE" --define "_specdir $(HOME)/COMPILE"
530
531 # usage: build_binary_rpm package
532 # xxx hacky - invoke createrepo if DEPEND-FILES mentions RPMS/yumgroups.xml
533 define target_binary_rpm 
534 $($(1).rpms): $($(1).srpm)
535         mkdir -p RPMS tmp
536         @(echo -n "XXXXXXXXXXXXXXX -- BEG RPM $(1) " ; date)
537         $(if $(findstring RPMS/yumgroups.xml,$($(1)-DEPEND-FILES)), $(createrepo) , )
538         $(call handle_devel_rpms_pre,$(1))
539         $($(1).rpmbuild) --rebuild $(RPM-USE-TMP-DIRS) $($(1).srpm)
540         $(call handle_devel_rpms_post,$(1))
541         @(echo -n "XXXXXXXXXXXXXXX -- END RPM $(1) " ; date)
542 # for manual use only - in case we need to investigate the results of an rpmbuild
543 $(1)-compile: $($(1).srpm)
544         mkdir -p COMPILE tmp
545         @(echo -n "XXXXXXXXXXXXXXX -- BEG compile $(1) " ; date)
546         $(if $(findstring RPMS/yumgroups.xml,$($(1)-DEPEND-FILES)), $(createrepo) , )
547         $(call handle_devel_rpms_pre,$(1))
548         $($(1).rpmbuild) --recompile $(RPM-USE-TMP-DIRS) $($(1).srpm)
549         $(call handle_devel_rpms_post,$(1))
550         @(echo -n "XXXXXXXXXXXXXXX -- END compile $(1) " ; date)
551 .PHONY: $(1)-compile
552 endef
553
554 $(foreach package,$(ALL),$(eval $(call target_binary_rpm,$(package))))
555 ### shorthand target
556 # e.g. make proper -> does propers rpms
557 # usage shorthand_target package
558 define target_shorthand 
559 $(1): $($(1).rpms)
560 .PHONY: $(1)
561 $(1)-spec: $($(1)-SPEC)
562 .PHONY: $(1)-spec
563 $(1)-mk: $($(1)-MK)
564 .PHONY: $(1)-mk
565 $(1)-tarball: $($(1).tarballs)
566 .PHONY: $(1)-tarball
567 $(1)-codebase: $($(1).codebase)
568 .PHONY: $(1)-source
569 $(1)-source: $($(1).source)
570 .PHONY: $(1)-codebase
571 $(1)-rpms: $($(1).rpms)
572 .PHONY: $(1)-rpms
573 $(1)-srpm: $($(1).srpm)
574 .PHONY: $(1)-srpm
575 endef
576
577 $(foreach package,$(ALL),$(eval $(call target_shorthand,$(package))))
578
579 ### file dependencies
580 define package_depends_on_file
581 $(1):$(2)
582 $($(1).srpm):$(2)
583 endef
584
585 define target_dependfiles
586 $(foreach file,$($(1)-DEPEND-FILES),$(eval $(call package_depends_on_file,$(1),$(file))))
587 endef
588
589 $(foreach package,$(ALL),$(eval $(call target_dependfiles,$(package))))
590
591 ### package dependencies
592 define package_depends_on_package
593 $(1):$(2)
594 $(1):$($(2).rpms)
595 $($(1).srpm):$($(2).rpms)
596 endef
597
598 define target_depends
599 $(foreach package,$($(1)-DEPEND-PACKAGES) $($(1).depend-devel-packages),$(eval $(call package_depends_on_package,$(1),$(package))))
600 endef
601
602 $(foreach package,$(ALL),$(eval $(call target_depends,$(package))))
603
604 ### clean target
605 # usage: target_clean package
606 define target_clean
607 $(1)-clean-codebase:
608         rm -rf $($(1).codebase)
609 .PHONY: $(1)-clean-codebase
610 CLEANS += $(1)-clean-codebase
611 $(1)-clean-source:
612         rm -rf $($(1).source)
613 .PHONY: $(1)-clean-source
614 CLEANS += $(1)-clean-source
615 $(1)-clean-tarball:
616         rm -rf $($(1).tarballs)
617 .PHONY: $(1)-clean-tarball
618 CLEANS += $(1)-clean-tarball
619 $(1)-clean-build:
620         rm -rf BUILD/$(notdir $($(1).source))
621 CLEANS += $(1)-clean-build
622 $(1)-clean-rpms:
623         rm -rf $($(1).rpms)
624 .PHONY: $(1)-clean-rpms
625 CLEANS += $(1)-clean-rpms
626 $(1)-clean-srpm:
627         rm -rf $($(1).srpm)
628 .PHONY: $(1)-clean-srpm
629 CLEANS += $(1)-clean-srpm
630 $(1)-codeclean: $(1)-clean-source $(1)-clean-tarball $(1)-clean-build $(1)-clean-rpms $(1)-clean-srpm
631 $(1)-clean: $(1)-clean-codebase $(1)-codeclean
632 .PHONY: $(1)-codeclean $(1)-clean 
633 $(1)-clean-spec:
634         rm -rf $($(1).specpath)
635 .PHONY: $(1)-clean-spec
636 $(1)-clean-make:
637         rm -rf MAKE/$(1).mk
638 .PHONY: $(1)-clean-make
639 $(1)-distclean: $(1)-distclean1 $(1)-distclean2
640 $(1)-distclean1: $(1)-clean-spec $(1)-clean-make
641 $(1)-distclean2: $(1)-clean
642 .PHONY: $(1)-distclean $(1)-distclean1 $(1)-distclean2
643 endef
644
645 $(foreach package,$(ALL),$(eval $(call target_clean,$(package))))
646
647 ### clean precisely
648 clean:
649         $(MAKE) $(CLEANS)
650 .PHONY: clean
651
652 clean-help:
653         @echo Available clean targets
654         @echo $(CLEANS)
655
656 ### brute force clean
657 distclean1:
658         rm -rf savedpldistro.mk .rpmmacros spec2make header.spec SPECS MAKE $(DISTCLEANS)
659 distclean2:
660         rm -rf CODEBASES SOURCES BUILD BUILDROOT RPMS SRPMS tmp
661 distclean: distclean1 distclean2
662 .PHONY: distclean1 distclean2 distclean
663
664 develclean:
665         -$(RPM-UNINSTALL-DEVEL) $(ALL-DEVEL-RPMS)
666
667 ####################
668 # gather build information for the 'About' page
669 # when run from crontab, INIT_CWD not properly set (says /root ..)
670 # so, the nightly build passes BASE here
671 # also store BASE in .base for any post-processing purposes
672 myplc-release:
673         @echo 'Creating myplc-release'
674         rm -f $@
675         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx build info" >> $@
676         $(MAKE) --no-print-directory version-build >> $@
677         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx svn info" >> $@
678         $(MAKE) --no-print-directory version-svns >> $@
679         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx rpm info" >> $@
680         $(MAKE) --no-print-directory version-rpms >> $@
681         @echo $(BASE) > .base
682
683 version-build:
684         @echo -n 'Build build-date: ' ; date '+%Y.%m.%d'
685         @echo -n 'Build build-time: ' ; date '+%H:%M-%Z'
686         @echo -n 'Build build-hostname: ' ; hostname
687         @echo    "Build build-base: $(BASE)"
688         @echo    "Build planetlab-distro: $(PLDISTRO)"
689         @echo    "Build planetlab-tags: $(PLDISTROTAGS)"
690         @echo -n 'Build planetlab-tagsid: ' ; fgrep '$$''Id' $(PLDISTROTAGS)
691         @echo    "Build target-arch: $(HOSTARCH)"
692         @echo    "Build target-distro: $(DISTRO)"
693         @echo    "Build target-distroname: $(DISTRONAME)"
694         @echo    "Build target-release: $(RELEASE)"     
695         @echo    "Build target-personality: $(PERSONALITY)"     
696
697 #################### 
698 # for a given module
699 VFORMAT="%30s := %s\n"
700 define svn_version_target
701 $(1)-version-svn:
702         @$(if $($(1)-SVNPATH),\
703            printf $(VFORMAT) $(1)-SVNPATH "$($(1)-SVNPATH)",\
704            printf $(VFORMAT) $(1)-CVSROOT "$($(1)-CVSROOT)" ; printf $(VFORMAT) $(1)-TAG "$($(1)-TAG)")
705 endef
706
707 $(foreach module,$(ALL-MODULES), $(eval $(call svn_version_target,$(module))))
708
709 version-svns: $(foreach module, $(ALL-MODULES), $(module)-version-svn)
710
711 RFORMAT="%20s :: version=%s release=%s\n"
712 define rpm_version_target
713 $(1)-version-rpm:
714         @printf $(RFORMAT) $($(1).rpm-name) $($(1).rpm-version) $($(1).rpm-release)
715 version-rpms: $(1)-version-rpm
716 endef
717
718 $(foreach package,$(sort $(ALL)), $(eval $(call rpm_version_target,$(package))))
719
720 versions: myplc-release version-build version-svns version-rpms
721 .PHONY: versions version-build version-rpms version-svns
722
723 #################### package info
724 PKGKEYS := tarballs source codebase srpm rpms rpmnames rpm-release rpm-name rpm-version rpm-subversion
725 %-pkginfo: package=$(subst -pkginfo,,$@)
726 %-pkginfo: 
727         @$(foreach key,$(PKGKEYS),echo "$(package).$(key)=$($(package).$(key))";)
728 ## rpm info
729 RPMKEYS := rpm-path package
730 %-rpminfo: rpm=$(subst -rpminfo,,$@)
731 %-rpminfo: 
732         @$(foreach key,$(RPMKEYS),echo "$(rpm).$(key)=$($(rpm).$(key))";)
733
734 #################### various lists - designed to run with stage1=true
735 packages:
736         @$(foreach package,$(ALL), echo package=$(package) ref_module=$($(package).module) modules=$($(package)-MODULES) rpmnames=$($(package).rpmnames); )
737
738 modules:
739         @$(foreach module,$(ALL-MODULES), echo module=$(module) svnpath=$($(module)-SVNPATH); )
740
741 branches:
742         @$(foreach module,$(ALL-MODULES), \
743           $(if $($(module)-SVNBRANCH),echo module=$(module) branch=$($(module)-SVNBRANCH);))
744
745 module-tools:
746         @$(foreach module,$(ALL-MODULES), \
747          $(if $($(module)-SVNPATH), \
748           $(if $($(module)-SVNBRANCH), \
749              echo $(module):$($(module)-SVNBRANCH); , \
750              echo $(module); )))
751
752 info: packages modules branches 
753
754 .PHONY: info packages modules branches module-tools
755
756 ####################
757 tests_svnpath:
758         @$(if $(tests-SVNPATH), echo $(tests-SVNPATH) > $@, \
759         echo "http://svn.planet-lab.org/svn/tests/trunk" > $@)
760
761
762 ####################
763 help:
764         @echo "********** Run make in two stages:"
765         @echo ""
766         @echo "make stage1=true PLDISTRO=onelab"
767         @echo " -> extracts all spec files in SPECS/ and mk files in MAKE/"
768         @echo "    as well as save PLDISTRO for subsequent runs"
769         @echo ""
770         @echo "********** Then you can use the following targets"
771         @echo 'make'
772         @echo "  rebuilds everything"
773         @echo 'make util-vserver'
774         @echo "  makes the RPMS related to util-vserver"
775         @echo "  equivalent to 'make util-vserver-rpms'"
776         @echo ""
777         @echo "********** Or, vertically - step-by-step for a given package"
778         @echo 'make util-vserver-codebase'
779         @echo "  performs codebase extraction in CODEBASES/util-vserver"
780         @echo 'make util-vserver-source'
781         @echo "  creates source link in SOURCES/util-vserver-<version>"
782         @echo 'make util-vserver-tarball'
783         @echo "  creates source tarball in SOURCES/util-vserver-<version>.<tarextension>"
784         @echo 'make util-vserver-srpm'
785         @echo "  build source rpm in SRPMS/"
786         @echo 'make util-vserver-rpms'
787         @echo "  build rpm(s) in RPMS/"
788         @echo ""
789         @echo "********** Or, horizontally, reach a step for all known packages"
790         @echo 'make codebases'
791         @echo 'make sources'
792         @echo 'make tarballs'
793         @echo 'make srpms'
794         @echo 'make rpms'
795         @echo ""
796         @echo "********** Manual targets"
797         @echo "make package-compile"
798         @echo "  The regular process uses rpmbuild --rebuild, that performs"
799         @echo "  a compilation directory cleanup upon completion. If you need to investigate"
800         @echo "  the intermediate compilation directory, use the -compile targets"
801         @echo "********** Cleaning examples"
802         @echo "make clean"
803         @echo "  removes the files made by make"
804         @echo "make distclean"
805         @echo "  brute-force cleaning, removes entire directories - requires a new stage1"
806         @echo "make develclean"
807         @echo "  rpm-uninstalls all devel packages installed during build"
808         @echo ""
809         @echo "make iptables-distclean"
810         @echo "  deep clean for a given package"
811         @echo "make iptables-codeclean"
812         @echo "  run this if you've made a change in the CODEBASES area for iptables"
813         @echo ""
814         @echo "make util-vserver-clean"
815         @echo "  removes codebase, source, tarball, build, rpm and srpm for util-vserver"
816         @echo "make util-vserver-clean-codebase"
817         @echo "  and so on for source, tarball, build, rpm and srpm"
818         @echo ""
819         @echo "********** Info examples"
820         @echo "make ++ALL"
821         @echo "  Displays the value of a given variable (here ALL)"
822         @echo "  with only a single plus sign only the value is displayed"
823         @echo "make info"
824         @echo "  is equivalent to make packages modules branches"
825         @echo "  provides various info on these objects"
826         @echo "make ulogd-pkginfo"
827         @echo "  Displays know attributes of a package"
828         @echo "make kernel-devel-rpminfo"
829         @echo "  Displays know attributes of an rpm"
830         @echo "make stage1=true PLDISTROTAGS=planetlab-tags-4.2.mk packages modules branches module-tools"
831         @echo "  Lists mentioned items - module-tools is used in modules.update"
832         @echo ""
833         @echo "********** Known pakages are"
834         @echo "$(ALL)"
835
836 #################### convenience, for debugging only
837 # make +foo : prints the value of $(foo)
838 # make ++foo : idem but verbose, i.e. foo=$(foo)
839 ++%: varname=$(subst +,,$@)
840 ++%:
841         @echo "$(varname)=$($(varname))"
842 +%: varname=$(subst +,,$@)
843 +%:
844         @echo "$($(varname))"