first draft of an about page
[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 # (*) the default distribution is called 'planetlab'
25 # (*) you may define an alternative distribution, e.g. onelab
26 # in this case you need to
27 # (*) create onelab.mk that defines your *packages* (see below)
28 # (*) create onelab-tags.mk that defines where to fetch your *modules*
29 # (*) create your main yumgroups.xml as groups/<distro>.xml
30 # (*) there are also various places where a set of modules are defined.
31 #     check for .lst files in the various modules that build root images
32 #     and mimic what's done for planetlab 
33 # (*) then you need to run 
34 #     make stage1=true PLDISTRO=onelab
35 #
36 #################### 
37 # This build deals with 3 kinds of objects
38
39 # (*) packages are named upon the RPM name; they are mostly lowercase
40 #     Add a package to ALL if you want it built as part of the default set.
41 # (*) modules are named after the subversion tree; as of this writing their names 
42 #     are mostly mixed case like MyPLC or VserverReference
43 # (*) rpms are named in the spec files. A package typically defines several rpms;
44 #     rpms are used for defining DEPEND-DEVEL-RPMS. See also package.rpmnames
45
46 #################### packages
47 # basics: how to build a package - you need/may define the following variables
48
49 # (*) package-MODULES
50 #     a package needs one or several modules to build. 
51 #     to this end, define 
52 # (*) package-SPEC
53 #     the package's specfile; this is relative to the FIRST module in package-MODULES
54 #     see 'codebase' below
55 #
56 # Optional:
57 #
58 # (*) package-SPECVARS
59 #     space-separated list of spec variable definitions, where you can reference make variable that relate to 
60 #     packages defined BEFORE the current one (note: you should use = - as opposed to := - to define these)
61 #     e.g. mydriver-SPECVARS = foo=$(kernel-rpm-release) 
62 #     would let you use the %release from the kernel's package when rpmbuild'ing mydriver - see automatic below
63 # (*) package-DEPEND-PACKAGES
64 #     a set of *packages* that this package depends on
65 # (*) package-DEPEND-DEVEL-RPMS
66 #     a set of *rpms* that the build will rpm-install before building <package>
67 # (*) package-DEPEND-FILES
68 #     a set of files that the package depends on - and that make needs to know about
69 #     if this contains RPMS/yumgroups.xml, then the toplevel RPMS's index 
70 #     is refreshed with createrepo prior to running rpmbuild
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 #
76 #################### modules
77 # Required information about the various modules (set this in e.g. planetlab-tags.mk)
78 #
79 # (*) module-SVNPATH
80 #     the complete path where this module lies; 
81 #     you can specify the trunk or a given tag with this variable
82
83 # OR if the module is managed under cvs (will be obsoleted)
84
85 # (*) module-CVSROOT
86 # (*) module-TAG
87 #
88 #################### automatic variables
89 #
90 # the build defines some make variables that are extracted from spec files
91 # see for example
92 # (*)  $ make ulogd.pkginfo
93 #        to see the list f variables attached to a given package
94 # (*)  $ make kernel-devel.rpminfo
95 #        to see the list f variables attached to a given rpm
96 #
97 ####################
98
99 #
100 # Default values
101 #
102 HOSTARCH := $(shell uname -i)
103 DISTRO := $(shell ./getdistro.sh)
104 RELEASE := $(shell ./getrelease.sh)
105 RPM-INSTALL-DEVEL := rpm --force -Uvh
106 # cannot force rpm -e
107 RPM-UNINSTALL-DEVEL := rpm -e
108
109 #################### Makefile
110 # Default target
111 all:
112 .PHONY:all
113
114 ### default values
115 PLDISTRO := planetlab
116 RPMBUILD := rpmbuild
117 export CVS_RSH := ssh
118
119 ########## pldistro.mk holds PLDISTRO - it is generated at stage1 (see below)
120 ifeq "$(stage1)" ""
121 include pldistro.mk
122 endif
123
124 #################### include onelab.mk
125 # describes the set of components
126 PLDISTROCONTENTS := $(PLDISTRO).mk
127 include $(PLDISTROCONTENTS)
128
129 #################### include <pldistro>-tags.mk
130 # describes where to fetch components, and the related tags if using cvs
131 PLDISTROTAGS := $(PLDISTRO)-tags.mk
132 include $(PLDISTROTAGS)
133
134 ########## stage1 and stage1iter
135 # extract specs and compute .mk files by running 
136 # make stage1=true
137 # entering stage1, we compute all the spec files
138 # then we use stage1iter to compute the .mk iteratively, 
139 # ensuring that the n-1 first makefiles are loaded when creating the n-th one
140 # when stage1iter is set, it is supposed to be an index (starting at 1) in $(ALL)
141
142 ALLMKS := $(foreach package, $(ALL), MAKE/$(package).mk)
143
144 ### stage1iter : need some arithmetic, see
145 # http://www.cmcrossroads.com/articles/ask-mr.-make/learning-gnu-make-functions-with-arithmetic.html
146 ifneq "$(stage1iter)" ""
147 # the first n packages
148 packages := $(wordlist 1,$(words $(stage1iter)),$(ALL))
149 # the n-th package
150 package := $(word $(words $(packages)),$(packages))
151 # the n-1 first packages
152 stage1iter_1 := $(wordlist 2,$(words $(stage1iter)),$(stage1iter))
153 previous := $(wordlist 1,$(words $(stage1iter_1)),$(ALL))
154 previousmks := $(foreach package,$(previous),MAKE/$(package).mk)
155 include $(previousmks)
156 all: verbose
157 verbose:
158         @echo "========== stage1iter : $(package)"
159 #       @echo "stage1iter : included .mk files : $(previousmks)"
160 all: $($(package).specpath)
161 all: MAKE/$(package).mk
162 else
163 ### stage1
164 ifneq "$(stage1)" ""
165 all : verbose
166 verbose :
167         @echo "========== stage1"
168 all : spec2make
169 all : .rpmmacros
170 # specs and makes are done sequentially by stage1iter
171 all : stage1iter
172 stage1iter:
173         arg=""; for n in $(ALL) ; do arg="$$arg x"; $(MAKE) --no-print-directory stage1iter="$$arg"; done
174 ### regular make
175 else
176 ### once .mks are OK, you can run make normally
177 include $(ALLMKS)
178 #all : tarballs
179 #all : sources
180 #all : codebases
181 #all : rpms
182 #all : srpms
183 # mention $(ALL) here rather than rpms 
184 # this is because the inter-package dependencies are expressed like
185 # util-vserver: util-python
186 all: rpms
187 all: repo
188 endif
189 endif
190
191 ### yumgroups.xml
192 # the source
193 ifndef YUMGROUPS
194 YUMGROUPS := groups/$(PLDISTRO).xml
195 endif
196
197 RPMS/yumgroups.xml: $(YUMGROUPS)
198         mkdir -p RPMS
199         install -D -m 644 $(YUMGROUPS) $@
200
201 createrepo = createrepo --quiet -g yumgroups.xml RPMS/ 
202
203 repo: RPMS/yumgroups.xml
204         $(createrepo)
205
206 .PHONY: repo
207
208 ####################
209 # notes: 
210 # * to make configuration easier, we always use the first module's
211 # definitions (CVSROOT,TAG, or SVNPATH) to extract the spec file
212 # * for the same reason, in case cvs is used, the first module name is added to 
213 # $(package)-SPEC - otherwise the cvs modules have to define spec as 
214 # <module>/<module>.spec while svn modules just define it as <module>.spec
215 #
216 define stage1_variables
217 $(1).spec = $(notdir $($(1)-SPEC))
218 $(1).specpath = SPECS/$(1).spec
219 $(1).module = $(firstword $($(1)-MODULES))
220 endef
221
222 $(foreach package, $(ALL), $(eval $(call stage1_variables,$(package))))
223
224 #
225 # for each package, compute whether we need to set date (i.e. whether we use the trunk)
226 # the myplc package is forced to have a date, because it is more convenient
227 # (we cannot bump its number everytime something changes in the system)
228 # myplc-native does not need this trick
229
230 define package_hasdate
231 $(1).has-date = $(if $(subst myplc,,$(1)), \
232                   $(if $($(1)-SVNPATH),\
233                      $(if $(findstring /trunk,$($(1)-SVNPATH)),yes,),\
234                      $(if $(findstring HEAD,$($(1)-TAG)),yes,)), \
235                 yes)
236 endef
237
238 $(foreach package, $(ALL), $(eval $(call package_hasdate,$(package))))
239
240 ### extract spec file from scm
241 define target_spec
242 $($(1).specpath):
243         mkdir -p SPECS
244         (echo -n "# Generated by planetlab build from $($(1)-SPEC) on " ; date) > $($(1).specpath)
245         echo "%define distroname $(DISTRO)" >> $($(1).specpath)
246         echo "%define distrorelease $(RELEASE)" >> $($(1).specpath)
247         echo "%define pldistro $(PLDISTRO)" >> $($(1).specpath)
248         $(if $($(1).has-date),echo "%define date $(shell date +%Y.%m.%d)" >> $($(1).specpath),)
249         $(if $($(1)-SPECVARS), \
250           $(foreach line,$($(1)-SPECVARS), \
251             echo "%define" $(word 1,$(subst =, ,$(line))) "$(word 2,$(subst =, ,$(line)))" >> $($(1).specpath) ;))
252         echo "# included from codebase specfile" >> $($(1).specpath)
253         $(if $($($(1).module)-SVNPATH),\
254           svn cat $($($(1).module)-SVNPATH)/$($(1)-SPEC) >> $($(1).specpath) || rm $($(1).specpath),\
255           cvs -d $($($(1).module)-CVSROOT) checkout \
256               -r $($($(1).module)-TAG) \
257               -p $($(1).module)/$($(1)-SPEC) >> $($(1).specpath))
258 endef
259
260 $(foreach package,$(ALL),$(eval $(call target_spec,$(package))))
261
262 ###
263 # Base rpmbuild in the current directory
264 # issues on fedora 8 : see the following posts
265 # http://forums.fedoraforum.org/showthread.php?t=39625 - and more specifically post#6
266 # https://www.redhat.com/archives/fedora-devel-list/2007-November/msg00171.html
267 REALROOT=/build
268 FAKEROOT=/longbuildroot
269 PWD=$(shell /bin/pwd)
270 ifeq "$(PWD)" "$(REALROOT)"
271 export HOME := $(FAKEROOT)
272 else
273 export HOME := $(PWD)
274 endif
275 .rpmmacros:
276 ifeq "$(shell pwd)" "/build"
277         rm -f $(FAKEROOT) ; ln -s $(REALROOT) $(FAKEROOT)
278 endif
279         rm -f $@ 
280         echo "%_topdir $(HOME)" >> $@
281         echo "%_tmppath $(HOME)/tmp" >> $@
282         ./getrpmmacros.sh >> $@
283
284 ### this utility allows to extract various info from a spec file
285 ### and to define them in makefiles
286 spec2make: spec2make.c
287         $(CC) -g -Wall $< -o $@ -lrpm -lrpmbuild
288
289 ### run spec2make on the spec file and include the result
290 # usage: spec2make package
291 define target_mk
292 MAKE/$(1).mk: $($(1).specpath) spec2make .rpmmacros
293         mkdir -p MAKE
294         ./spec2make $($(1)-RPMFLAGS) $($(1).specpath) $(1) > MAKE/$(1).mk
295         @if [ -z MAKE/$(1).mk ] ; then rm MAKE/$(1).mk ; exit 1 ; fi
296 endef
297
298 $(foreach package,$(ALL),$(eval $(call target_mk,$(package))))
299
300 # stores PLDISTRO in a file
301 # this is done at stage1. later run wont get confused
302 pldistro.mk:
303         echo "PLDISTRO:=$(PLDISTRO)" > $@
304         echo "PLDISTROTAGS:=$(PLDISTROTAGS)" >> $@
305
306 savepldistro: pldistro.mk
307 .PHONY: savepldistro
308
309 # always refresh this
310 all: savepldistro
311
312 #################### regular make
313
314 define stage2_variables
315 ### devel dependencies
316 $(1).rpmbuild = $(if $($(1)-RPMBUILD),$($(1)-RPMBUILD),$(RPMBUILD)) $($(1)-RPMFLAGS)
317 $(1).all-devel-rpm-paths := $(foreach rpm,$($(1)-DEPEND-DEVEL-RPMS),$($(rpm).rpm-path))
318 $(1).depend-devel-packages := $(sort $(foreach rpm,$($(1)-DEPEND-DEVEL-RPMS),$($(rpm).package)))
319 ALL-DEVEL-RPMS += $($(1)-DEPEND-DEVEL-RPMS)
320 endef
321
322 $(foreach package,$(ALL),$(eval $(call stage2_variables,$(package))))
323 ALL-DEVEL-RPMS := $(sort $(ALL-DEVEL-RPMS))
324
325
326 ### pack sources into tarballs
327 ALLTARBALLS:= $(foreach package, $(ALL), $($(package).tarballs))
328 tarballs: $(ALLTARBALLS)
329         @echo $(words $(ALLTARBALLS)) source tarballs OK
330 .PHONY: tarballs
331
332 SOURCES/%.tar.bz2: SOURCES/%
333         tar chpjf $@ -C SOURCES $*
334
335 SOURCES/%.tar.gz: SOURCES/%
336         tar chpzf $@ -C SOURCES $*
337
338 SOURCES/%.tgz: SOURCES/%
339         tar chpzf $@ -C SOURCES $*
340
341 ##
342 URLS/%: url=$(subst @colon@,:,$(subst @slash@,/,$(notdir $@)))
343 URLS/%: basename=$(notdir $(url))
344 URLS/%: 
345         echo curl $(url) -o SOURCES/$(basename)
346         touch $@
347
348 ### the directory SOURCES/<package>-<version> is made 
349 # with a copy -rl from CODEBASES/<package>
350 # the former is $(package.source) and the latter is $(package.codebase)
351 ALLSOURCES:=$(foreach package, $(ALL), $($(package).source))
352 # so that make does not use the rule below directly for creating the tarball files
353 .SECONDARY: $(ALLSOURCES)
354
355 sources: $(ALLSOURCES)
356         @echo $(words $(ALLSOURCES)) versioned source trees OK
357 .PHONY: sources
358
359 define target_link_codebase_sources
360 $($(1).source): $($(1).codebase) ; mkdir -p SOURCES ; cp -rl $($(1).codebase) $($(1).source)
361 endef
362
363 $(foreach package,$(ALL),$(eval $(call target_link_codebase_sources,$(package))))
364
365 ### codebase extraction
366 ALLCODEBASES:=$(foreach package, $(ALL), $($(package).codebase))
367 # so that make does not use the rule below directly for creating the tarball files
368 .SECONDARY: $(ALLCODEBASES)
369
370 codebases : $(ALLCODEBASES)
371         @echo $(words $(ALLCODEBASES)) codebase OK
372 .PHONY: codebases
373
374 ### extract codebase 
375 # usage: extract_single_module package 
376 define extract_single_module
377         mkdir -p CODEBASES
378         $(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))
379 endef
380
381 # usage: extract_multi_module package 
382 define extract_multi_module
383         mkdir -p CODEBASES/$(1) && cd CODEBASES/$(1) && (\
384         $(foreach m,$($(1)-MODULES), $(if $($(m)-SVNPATH), svn export $($(m)-SVNPATH) $(m);, cvs -d $($(m)-CVSROOT) export -r $($(m)-TAG) $(m);)))
385 endef
386
387 CODEBASES/%: package=$(notdir $@)
388 CODEBASES/%: multi_module=$(word 2,$($(package)-MODULES))
389 CODEBASES/%: 
390         @(echo -n "XXXXXXXXXXXXXXX -- BEG CODEBASE $(package) : $@ " ; date)
391         $(if $(multi_module),\
392           $(call extract_multi_module,$(package)),\
393           $(call extract_single_module,$(package)))
394         @(echo -n "XXXXXXXXXXXXXXX -- END CODEBASE $(package) : $@ " ; date)
395
396 ### source rpms
397 ALLSRPMS:=$(foreach package,$(ALL),$($(package).srpm))
398 srpms: $(ALLSRPMS)
399         @echo $(words $(ALLSRPMS)) source rpms OK
400 .PHONY: srpms
401
402 # usage: target_source_rpm package
403 # select upon the package name, whether it contains srpm or not
404 define target_source_rpm 
405 ifeq "$($(1)-BUILD-FROM-SRPM)" ""
406 $($(1).srpm): $($(1).specpath) .rpmmacros $($(1).tarballs) 
407         mkdir -p BUILD SRPMS tmp
408         @(echo -n "XXXXXXXXXXXXXXX -- BEG SRPM $(1) (using SOURCES) " ; date)
409         $(if $($(1).all-devel-rpm-paths), $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths))
410         $($(1).rpmbuild) -bs $($(1).specpath)
411         $(if $($(1)-DEPEND-DEVEL-RPMS), $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
412         @(echo -n "XXXXXXXXXXXXXXX -- END SRPM $(1) " ; date)
413 else
414 $($(1).srpm): $($(1).specpath) .rpmmacros $($(1).codebase)
415         mkdir -p BUILD SRPMS tmp
416         @(echo -n "XXXXXXXXXXXXXXX -- BEG SRPM $(1) (using make srpm) " ; date)
417         $(if $($(1).all-devel-rpm-paths), $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths))
418         make -C $($(1).codebase) srpm SPECFILE=$(HOME)/$($(1).specpath) && \
419            rm -f SRPMS/$(notdir $($(1).srpm)) && \
420            ln $($(1).codebase)/$(notdir $($(1).srpm)) SRPMS/$(notdir $($(1).srpm)) 
421         $(if $($(1)-DEPEND-DEVEL-RPMS), $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
422         @(echo -n "XXXXXXXXXXXXXXX -- END SRPM $(1) " ; date)
423 endif
424 endef
425
426 $(foreach package,$(ALL),$(eval $(call target_source_rpm,$(package))))
427
428 ### binary rpms are made from source rpm
429 ALLRPMS:=$(foreach package,$(ALL),$($(package).rpms))
430 # same as above, mention $(ALL) and not $(ALLRPMS)
431 rpms: $(ALLRPMS)
432         @echo $(words $(ALLRPMS)) binary rpms OK
433 .PHONY: rpms
434
435 # use tmp dirs when building binary rpm so make remains idempotent 
436 # otherwise SOURCES/ or SPEC gets touched again - which leads to rebuilding
437 RPM-USE-TMP-DIRS = --define "_sourcedir $(HOME)/tmp" --define "_specdir $(HOME)/tmp"
438
439 # usage: build_binary_rpm package
440 # xxx hacky - invoke createrepo if DEPEND-FILES mentions RPMS/yumgroups.xml
441 define target_binary_rpm 
442 $($(1).rpms): $($(1).srpm)
443         mkdir -p BUILD RPMS tmp
444         @(echo -n "XXXXXXXXXXXXXXX -- BEG RPM $(1) " ; date)
445         $(if $(findstring RPMS/yumgroups.xml,$($(1)-DEPEND-FILES)), $(createrepo) , )
446         $(if $($(1).all-devel-rpm-paths), $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths))
447         $($(1).rpmbuild) --rebuild $(RPM-USE-TMP-DIRS) $($(1).srpm)
448         $(if $($(1)-DEPEND-DEVEL-RPMS), $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
449         @(echo -n "XXXXXXXXXXXXXXX -- END RPM $(1) " ; date)
450 endef
451
452 $(foreach package,$(ALL),$(eval $(call target_binary_rpm,$(package))))
453
454 ### shorthand target
455 # e.g. make proper -> does propers rpms
456 # usage shorthand_target package
457 define target_shorthand 
458 $(1): $($(package).rpms)
459 .PHONY: $(1)
460 $(1)-spec: $($(package)-SPEC)
461 .PHONY: $(1)-spec
462 $(1)-mk: $($(package)-MK)
463 .PHONY: $(1)-mk
464 $(1)-tarball: $($(package).tarballs)
465 .PHONY: $(1)-tarball
466 $(1)-codebase: $($(package).codebase)
467 .PHONY: $(1)-source
468 $(1)-source: $($(package).source)
469 .PHONY: $(1)-codebase
470 $(1)-rpms: $($(package).rpms)
471 .PHONY: $(1)-rpms
472 $(1)-srpm: $($(package).srpm)
473 .PHONY: $(1)-srpm
474 endef
475
476 $(foreach package,$(ALL),$(eval $(call target_shorthand,$(package))))
477
478 ### file dependencies
479 define package_depends_on_file
480 $(1):$(2)
481 $($(1).srpm):$(2)
482 endef
483
484 define target_dependfiles
485 $(foreach file,$($(1)-DEPEND-FILES),$(eval $(call package_depends_on_file,$(1),$(file))))
486 endef
487
488 $(foreach package,$(ALL),$(eval $(call target_dependfiles,$(package))))
489
490 ### package dependencies
491 define package_depends_on_package
492 $(1):$(2)
493 $(1):$($(2).rpms)
494 $($(1).srpm):$($(2).rpms)
495 endef
496
497 define target_depends
498 $(foreach package,$($(1)-DEPEND-PACKAGES) $($(1).depend-devel-packages),$(eval $(call package_depends_on_package,$(1),$(package))))
499 endef
500
501 $(foreach package,$(ALL),$(eval $(call target_depends,$(package))))
502
503 ### clean target
504 # usage: target_clean package
505 define target_clean
506 $(1)-clean-codebase:
507         rm -rf $($(1).codebase)
508 .PHONY: $(1)-clean-codebase
509 CLEANS += $(1)-clean-codebase
510 $(1)-clean-source:
511         rm -rf $($(1).source)
512 .PHONY: $(1)-clean-source
513 CLEANS += $(1)-clean-source
514 $(1)-clean-tarball:
515         rm -rf $($(1).tarballs)
516 .PHONY: $(1)-clean-tarball
517 CLEANS += $(1)-clean-tarball
518 $(1)-clean-build:
519         rm -rf BUILD/$(notdir $($(1).source))
520 CLEANS += $(1)-clean-build
521 $(1)-clean-rpms:
522         rm -rf $($(1).rpms)
523 .PHONY: $(1)-clean-rpms
524 CLEANS += $(1)-clean-rpms
525 $(1)-clean-srpm:
526         rm -rf $($(1).srpm)
527 .PHONY: $(1)-clean-srpm
528 CLEANS += $(1)-clean-srpm
529 $(1)-codeclean: $(1)-clean-source $(1)-clean-tarball $(1)-clean-build $(1)-clean-rpms $(1)-clean-srpm
530 $(1)-clean: $(1)-clean-codebase $(1)-codeclean
531 .PHONY: $(1)-codeclean $(1)-clean 
532 $(1)-clean-spec:
533         rm -rf $($(1).specpath)
534 .PHONY: $(1)-clean-spec
535 $(1)-clean-make:
536         rm -rf MAKE/$(1).mk
537 .PHONY: $(1)-clean-make
538 $(1)-distclean: $(1)-distclean1 $(1)-distclean2
539 $(1)-distclean1: $(1)-clean-spec $(1)-clean-make
540 $(1)-distclean2: $(1)-clean
541 .PHONY: $(1)-distclean $(1)-distclean1 $(1)-distclean2
542 endef
543
544 $(foreach package,$(ALL),$(eval $(call target_clean,$(package))))
545
546 ### clean precisely
547 clean:
548         $(MAKE) $(CLEANS)
549 .PHONY: clean
550
551 clean-help:
552         @echo Available clean targets
553         @echo $(CLEANS)
554
555 ### brute force clean
556 distclean1:
557         rm -rf pldistro.mk .rpmmacros spec2make SPECS MAKE 
558 distclean2:
559         rm -rf CODEBASES SOURCES BUILD RPMS SRPMS tmp
560 distclean: distclean1 distclean2
561 .PHONY: distclean1 distclean2 distclean
562
563 develclean:
564         $(RPM-UNINSTALL-DEVEL) $(ALL-DEVEL-RPMS)
565
566 ####################
567 # gather build information for the 'About' page
568 # uses INIT_CWD to try and guess the vserver location
569 myplc-release:
570         @echo 'Creating myplc-release'
571         rm -f $@
572         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx build info" >> $@
573         $(MAKE) --no-print-directory version-build >> $@
574         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx svn info" >> $@
575         $(MAKE) --no-print-directory version-svns >> $@
576         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx rpm info" >> $@
577         $(MAKE) --no-print-directory version-rpms >> $@
578
579 version-build:
580         @echo -n 'Build bdate: ' ; date '+%Y.%m.%d'
581         @echo -n 'Build btime: ' ; date '+%H:%M'
582         @echo -n 'Build bhostname: ' ; hostname
583         @echo    "Build blocation: $(INIT_CWD)"
584         @echo    "Build blocation2: $${INIT_CWD}"
585         @echo -n 'Build tags file: ' ; fgrep '$$''Id' $(PLDISTROTAGS)
586         @echo    "Build tarch: $(HOSTARCH)"
587         @echo    "Build tdistro: $(DISTRO)"
588         @echo    "Build trelease: $(RELEASE)"   
589
590 #################### 
591 # for a given module
592 VFORMAT="%30s := %s\n"
593 define svn_version_target
594 $(1)-version-svn:
595         @$(if $($(1)-SVNPATH),\
596            printf $(VFORMAT) $(1)-SVNPATH "$($(1)-SVNPATH)",\
597            printf $(VFORMAT) $(1)-CVSROOT "$($(1)-CVSROOT)" ; printf $(VFORMAT) $(1)-TAG "$($(1)-TAG)")
598 endef
599
600 # compute all modules
601 ALL-MODULES :=
602 $(foreach package,$(ALL), $(eval ALL-MODULES+=$($(package)-MODULES)))
603 ALL-MODULES:=$(sort $(ALL-MODULES))
604
605 $(foreach module,$(ALL-MODULES), $(eval $(call svn_version_target,$(module))))
606
607 version-svns: $(foreach module, $(ALL-MODULES), $(module)-version-svn)
608
609 RFORMAT="%20s :: version=%s release=%s\n"
610 define rpm_version_target
611 $(1)-version-rpm:
612         @printf $(RFORMAT) $($(1).rpm-name) $($(1).rpm-version) $($(1).rpm-release)
613 version-rpms: $(1)-version-rpm
614 endef
615
616 $(foreach package,$(sort $(ALL)), $(eval $(call rpm_version_target,$(package))))
617
618 versions: version-build version-svns version-rpms
619 .PHONY: versions version-build version-rpms version-svns
620
621 #################### include install Makefile
622 # the default is to use the distro-dependent install file
623 # however the main distro file can redefine PLDISTROINSTALL
624 ifndef PLDISTROINSTALL
625 PLDISTROINSTALL := $(PLDISTRO)-install.mk
626 endif
627 # only if present
628 -include $(PLDISTROINSTALL)
629
630 ####################
631 help:
632         @echo "********** Run make in two stages:"
633         @echo ""
634         @echo "make stage1=true PLDISTRO=onelab"
635         @echo " -> extracts all spec files in SPECS/ and mk files in MAKE/"
636         @echo "    as well as save PLDISTRO for subsequent runs"
637         @echo ""
638         @echo "********** Then you can use the following targets"
639         @echo 'make'
640         @echo "  rebuilds everything"
641         @echo 'make util-vserver'
642         @echo "  makes the RPMS related to util-vserver"
643         @echo "  equivalent to 'make util-vserver-rpms'"
644         @echo ""
645         @echo "********** Or, vertically - step-by-step for a given package"
646         @echo 'make util-vserver-codebase'
647         @echo "  performs codebase extraction in CODEBASES/util-vserver"
648         @echo 'make util-vserver-source'
649         @echo "  creates source link in SOURCES/util-vserver-<version>"
650         @echo 'make util-vserver-tarball'
651         @echo "  creates source tarball in SOURCES/util-vserver-<version>.<tarextension>"
652         @echo 'make util-vserver-srpm'
653         @echo "  build source rpm in SRPMS/"
654         @echo 'make util-vserver-rpms'
655         @echo "  build rpm(s) in RPMS/"
656         @echo ""
657         @echo "********** Or, horizontally, reach a step for all known packages"
658         @echo 'make codebases'
659         @echo 'make sources'
660         @echo 'make tarballs'
661         @echo 'make srpms'
662         @echo 'make rpms'
663         @echo ""
664         @echo "********** Cleaning examples"
665         @echo "make clean"
666         @echo "  removes the files made by make"
667         @echo "make distclean"
668         @echo "  brute-force cleaning, removes entire directories - requires a new stage1"
669         @echo "make develclean"
670         @echo "  rpm-uninstalls all devel packages installed during build"
671         @echo ""
672         @echo "make iptables-distclean"
673         @echo "  deep clean for a given package"
674         @echo "make iptables-codeclean"
675         @echo "  run this if you've made a change in the CODEBASES area for iptables"
676         @echo ""
677         @echo "make util-vserver-clean"
678         @echo "  removes codebase, source, tarball, build, rpm and srpm for util-vserver"
679         @echo "make util-vserver-clean-codebase"
680         @echo "  and so on for source, tarball, build, rpm and srpm"
681         @echo ""
682         @echo "********** Info examples"
683         @echo "make ++ALL"
684         @echo "  Displays the value of a given variable (here ALL)"
685         @echo "  with only a single plus sign only the value is displayed"
686         @echo "make ulogd.pkginfo"
687         @echo "  Displays know attributes of a package"
688         @echo "make kernel-devel.rpminfo"
689         @echo "  Displays know attributes of an rpm"
690         @echo ""
691         @echo "********** Known pakages are"
692         @echo "$(ALL)"
693
694 #################### convenience, for debugging only
695 # make +foo : prints the value of $(foo)
696 # make ++foo : idem but verbose, i.e. foo=$(foo)
697 ++%: varname=$(subst +,,$@)
698 ++%:
699         @echo "$(varname)=$($(varname))"
700 +%: varname=$(subst +,,$@)
701 +%:
702         @echo "$($(varname))"
703 ## package info
704 PKGKEYS := tarballs source codebase srpm rpms rpmnames rpm-release rpm-name rpm-version rpm-subversion
705 %.pkginfo: package=$(subst .pkginfo,,$@)
706 %.pkginfo: 
707         @$(foreach key,$(PKGKEYS),echo "$(package).$(key)=$($(package).$(key))";)
708 ## rpm info
709 RPMKEYS := rpm-path package
710 %.rpminfo: rpm=$(subst .rpminfo,,$@)
711 %.rpminfo: 
712         @$(foreach key,$(RPMKEYS),echo "$(rpm).$(key)=$($(rpm).$(key))";)