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