cleaning up the root creation functions and build.common - untested
[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 ####################
192 # gather build information for the 'About' page
193 # uses INIT_CWD to try and guess the vserver location
194 myplc-release:
195         @echo 'Creating myplc-release'
196         rm -f $@
197         (echo -n 'Build bdate: ' ; date '+%Y.%m.%d') >> $@
198         (echo -n 'Build btime: ' ; date '+%H:%M') >> $@
199         (echo -n 'Build bhostname: ' ; hostname) >> $@
200         (echo    "Build blocation: $(INIT_CWD)") >> $@
201         (echo -n 'Build tags file: ' ; fgrep '$$''Id' $(PLDISTROTAGS)) >> $@
202         (echo    "Build tarch: $(HOSTARCH)") >> $@
203         (echo    "Build tdistro: $(DISTRO)") >> $@
204         (echo    "Build trelease: $(RELEASE)") >> $@
205         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx modules versions info" >> $@
206         $(MAKE) --no-print-directory versions >> $@
207         echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx rpms list" >> $@
208         $(MAKE) --no-print-directory version-rpms >> $@
209
210 ### yumgroups.xml
211 # the source
212 ifndef YUMGROUPS
213 YUMGROUPS := groups/$(PLDISTRO).xml
214 endif
215
216 RPMS/yumgroups.xml: $(YUMGROUPS)
217         mkdir -p RPMS
218         install -D -m 644 $(YUMGROUPS) $@
219
220 createrepo = createrepo --quiet -g yumgroups.xml RPMS/ 
221
222 repo: RPMS/yumgroups.xml
223         $(createrepo)
224
225 .PHONY: repo
226
227 ####################
228 # notes: 
229 # * to make configuration easier, we always use the first module's
230 # definitions (CVSROOT,TAG, or SVNPATH) to extract the spec file
231 # * for the same reason, in case cvs is used, the first module name is added to 
232 # $(package)-SPEC - otherwise the cvs modules have to define spec as 
233 # <module>/<module>.spec while svn modules just define it as <module>.spec
234 #
235 define stage1_variables
236 $(1).spec = $(notdir $($(1)-SPEC))
237 $(1).specpath = SPECS/$(1).spec
238 $(1).module = $(firstword $($(1)-MODULES))
239 endef
240
241 $(foreach package, $(ALL), $(eval $(call stage1_variables,$(package))))
242
243 #
244 # for each package, compute whether we need to set date (i.e. whether we use the trunk)
245 # the myplc package is forced to have a date, because it is more convenient
246 # (we cannot bump its number everytime something changes in the system)
247 # myplc-native does not need this trick
248
249 define package_hasdate
250 $(1).has-date = $(if $(subst myplc,,$(1)), \
251                   $(if $($(1)-SVNPATH),\
252                      $(if $(findstring /trunk,$($(1)-SVNPATH)),yes,),\
253                      $(if $(findstring HEAD,$($(1)-TAG)),yes,)), \
254                 yes)
255 endef
256
257 $(foreach package, $(ALL), $(eval $(call package_hasdate,$(package))))
258
259 ### extract spec file from scm
260 define target_spec
261 $($(1).specpath):
262         mkdir -p SPECS
263         (echo -n "# Generated by planetlab build from $($(1)-SPEC) on " ; date) > $($(1).specpath)
264         echo "%define distroname $(DISTRO)" >> $($(1).specpath)
265         echo "%define distrorelease $(RELEASE)" >> $($(1).specpath)
266         echo "%define pldistro $(PLDISTRO)" >> $($(1).specpath)
267         $(if $($(1).has-date),echo "%define date $(shell date +%Y.%m.%d)" >> $($(1).specpath),)
268         $(if $($(1)-SPECVARS), \
269           $(foreach line,$($(1)-SPECVARS), \
270             echo "%define" $(word 1,$(subst =, ,$(line))) "$(word 2,$(subst =, ,$(line)))" >> $($(1).specpath) ;))
271         echo "# included from codebase specfile" >> $($(1).specpath)
272         $(if $($($(1).module)-SVNPATH),\
273           svn cat $($($(1).module)-SVNPATH)/$($(1)-SPEC) >> $($(1).specpath) || rm $($(1).specpath),\
274           cvs -d $($($(1).module)-CVSROOT) checkout \
275               -r $($($(1).module)-TAG) \
276               -p $($(1).module)/$($(1)-SPEC) >> $($(1).specpath))
277 endef
278
279 $(foreach package,$(ALL),$(eval $(call target_spec,$(package))))
280
281 ###
282 # Base rpmbuild in the current directory
283 # issues on fedora 8 : see the following posts
284 # http://forums.fedoraforum.org/showthread.php?t=39625 - and more specifically post#6
285 # https://www.redhat.com/archives/fedora-devel-list/2007-November/msg00171.html
286 REALROOT=/build
287 FAKEROOT=/longbuildroot
288 PWD=$(shell /bin/pwd)
289 ifeq "$(PWD)" "$(REALROOT)"
290 export HOME := $(FAKEROOT)
291 else
292 export HOME := $(PWD)
293 endif
294 .rpmmacros:
295 ifeq "$(shell pwd)" "/build"
296         rm -f $(FAKEROOT) ; ln -s $(REALROOT) $(FAKEROOT)
297 endif
298         rm -f $@ 
299         echo "%_topdir $(HOME)" >> $@
300         echo "%_tmppath $(HOME)/tmp" >> $@
301         getrpmmacros.sh >> $@
302
303 ### this utility allows to extract various info from a spec file
304 ### and to define them in makefiles
305 spec2make: spec2make.c
306         $(CC) -g -Wall $< -o $@ -lrpm -lrpmbuild
307
308 ### run spec2make on the spec file and include the result
309 # usage: spec2make package
310 define target_mk
311 MAKE/$(1).mk: $($(1).specpath) spec2make .rpmmacros
312         mkdir -p MAKE
313         ./spec2make $($(1)-RPMFLAGS) $($(1).specpath) $(1) > MAKE/$(1).mk
314         @if [ -z MAKE/$(1).mk ] ; then rm MAKE/$(1).mk ; exit 1 ; fi
315 endef
316
317 $(foreach package,$(ALL),$(eval $(call target_mk,$(package))))
318
319 # stores PLDISTRO in a file
320 # this is done at stage1. later run wont get confused
321 pldistro.mk:
322         echo "PLDISTRO:=$(PLDISTRO)" > $@
323         echo "PLDISTROTAGS:=$(PLDISTROTAGS)" >> $@
324
325 savepldistro: pldistro.mk
326 .PHONY: savepldistro
327
328 # always refresh this
329 all: savepldistro
330
331 #################### regular make
332
333 define stage2_variables
334 ### devel dependencies
335 $(1).rpmbuild = $(if $($(1)-RPMBUILD),$($(1)-RPMBUILD),$(RPMBUILD)) $($(1)-RPMFLAGS)
336 $(1).all-devel-rpm-paths := $(foreach rpm,$($(1)-DEPEND-DEVEL-RPMS),$($(rpm).rpm-path))
337 $(1).depend-devel-packages := $(sort $(foreach rpm,$($(1)-DEPEND-DEVEL-RPMS),$($(rpm).package)))
338 ALL-DEVEL-RPMS += $($(1)-DEPEND-DEVEL-RPMS)
339 endef
340
341 $(foreach package,$(ALL),$(eval $(call stage2_variables,$(package))))
342 ALL-DEVEL-RPMS := $(sort $(ALL-DEVEL-RPMS))
343
344
345 ### pack sources into tarballs
346 ALLTARBALLS:= $(foreach package, $(ALL), $($(package).tarballs))
347 tarballs: $(ALLTARBALLS)
348         @echo $(words $(ALLTARBALLS)) source tarballs OK
349 .PHONY: tarballs
350
351 SOURCES/%.tar.bz2: SOURCES/%
352         tar chpjf $@ -C SOURCES $*
353
354 SOURCES/%.tar.gz: SOURCES/%
355         tar chpzf $@ -C SOURCES $*
356
357 SOURCES/%.tgz: SOURCES/%
358         tar chpzf $@ -C SOURCES $*
359
360 ##
361 URLS/%: url=$(subst @colon@,:,$(subst @slash@,/,$(notdir $@)))
362 URLS/%: basename=$(notdir $(url))
363 URLS/%: 
364         echo curl $(url) -o SOURCES/$(basename)
365         touch $@
366
367 ### the directory SOURCES/<package>-<version> is made 
368 # with a copy -rl from CODEBASES/<package>
369 # the former is $(package.source) and the latter is $(package.codebase)
370 ALLSOURCES:=$(foreach package, $(ALL), $($(package).source))
371 # so that make does not use the rule below directly for creating the tarball files
372 .SECONDARY: $(ALLSOURCES)
373
374 sources: $(ALLSOURCES)
375         @echo $(words $(ALLSOURCES)) versioned source trees OK
376 .PHONY: sources
377
378 define target_link_codebase_sources
379 $($(1).source): $($(1).codebase) ; mkdir -p SOURCES ; cp -rl $($(1).codebase) $($(1).source)
380 endef
381
382 $(foreach package,$(ALL),$(eval $(call target_link_codebase_sources,$(package))))
383
384 ### codebase extraction
385 ALLCODEBASES:=$(foreach package, $(ALL), $($(package).codebase))
386 # so that make does not use the rule below directly for creating the tarball files
387 .SECONDARY: $(ALLCODEBASES)
388
389 codebases : $(ALLCODEBASES)
390         @echo $(words $(ALLCODEBASES)) codebase OK
391 .PHONY: codebases
392
393 ### extract codebase 
394 # usage: extract_single_module package 
395 define extract_single_module
396         mkdir -p CODEBASES
397         $(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))
398 endef
399
400 # usage: extract_multi_module package 
401 define extract_multi_module
402         mkdir -p CODEBASES/$(1) && cd CODEBASES/$(1) && (\
403         $(foreach m,$($(1)-MODULES), $(if $($(m)-SVNPATH), svn export $($(m)-SVNPATH) $(m);, cvs -d $($(m)-CVSROOT) export -r $($(m)-TAG) $(m);)))
404 endef
405
406 CODEBASES/%: package=$(notdir $@)
407 CODEBASES/%: multi_module=$(word 2,$($(package)-MODULES))
408 CODEBASES/%: 
409         @(echo -n "XXXXXXXXXXXXXXX -- BEG CODEBASE $(package) : $@ " ; date)
410         $(if $(multi_module),\
411           $(call extract_multi_module,$(package)),\
412           $(call extract_single_module,$(package)))
413         @(echo -n "XXXXXXXXXXXXXXX -- END CODEBASE $(package) : $@ " ; date)
414
415 ### source rpms
416 ALLSRPMS:=$(foreach package,$(ALL),$($(package).srpm))
417 srpms: $(ALLSRPMS)
418         @echo $(words $(ALLSRPMS)) source rpms OK
419 .PHONY: srpms
420
421 # usage: target_source_rpm package
422 # select upon the package name, whether it contains srpm or not
423 define target_source_rpm 
424 ifeq "$($(1)-BUILD-FROM-SRPM)" ""
425 $($(1).srpm): $($(1).specpath) .rpmmacros $($(1).tarballs) 
426         mkdir -p BUILD SRPMS tmp
427         @(echo -n "XXXXXXXXXXXXXXX -- BEG SRPM $(1) (using SOURCES) " ; date)
428         $(if $($(1).all-devel-rpm-paths), $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths))
429         $($(1).rpmbuild) -bs $($(1).specpath)
430         $(if $($(1)-DEPEND-DEVEL-RPMS), $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
431         @(echo -n "XXXXXXXXXXXXXXX -- END SRPM $(1) " ; date)
432 else
433 $($(1).srpm): $($(1).specpath) .rpmmacros $($(1).codebase)
434         mkdir -p BUILD SRPMS tmp
435         @(echo -n "XXXXXXXXXXXXXXX -- BEG SRPM $(1) (using make srpm) " ; date)
436         $(if $($(1).all-devel-rpm-paths), $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths))
437         make -C $($(1).codebase) srpm SPECFILE=$(HOME)/$($(1).specpath) && \
438            rm -f SRPMS/$(notdir $($(1).srpm)) && \
439            ln $($(1).codebase)/$(notdir $($(1).srpm)) SRPMS/$(notdir $($(1).srpm)) 
440         $(if $($(1)-DEPEND-DEVEL-RPMS), $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
441         @(echo -n "XXXXXXXXXXXXXXX -- END SRPM $(1) " ; date)
442 endif
443 endef
444
445 $(foreach package,$(ALL),$(eval $(call target_source_rpm,$(package))))
446
447 ### binary rpms are made from source rpm
448 ALLRPMS:=$(foreach package,$(ALL),$($(package).rpms))
449 # same as above, mention $(ALL) and not $(ALLRPMS)
450 rpms: $(ALLRPMS)
451         @echo $(words $(ALLRPMS)) binary rpms OK
452 .PHONY: rpms
453
454 # use tmp dirs when building binary rpm so make remains idempotent 
455 # otherwise SOURCES/ or SPEC gets touched again - which leads to rebuilding
456 RPM-USE-TMP-DIRS = --define "_sourcedir $(HOME)/tmp" --define "_specdir $(HOME)/tmp"
457
458 # usage: build_binary_rpm package
459 # xxx hacky - invoke createrepo if DEPEND-FILES mentions RPMS/yumgroups.xml
460 define target_binary_rpm 
461 $($(1).rpms): $($(1).srpm)
462         mkdir -p BUILD RPMS tmp
463         @(echo -n "XXXXXXXXXXXXXXX -- BEG RPM $(1) " ; date)
464         $(if $(findstring RPMS/yumgroups.xml,$($(1)-DEPEND-FILES)), $(createrepo) , )
465         $(if $($(1).all-devel-rpm-paths), $(RPM-INSTALL-DEVEL) $($(1).all-devel-rpm-paths))
466         $($(1).rpmbuild) --rebuild $(RPM-USE-TMP-DIRS) $($(1).srpm)
467         $(if $($(1)-DEPEND-DEVEL-RPMS), $(RPM-UNINSTALL-DEVEL) $($(1)-DEPEND-DEVEL-RPMS))
468         @(echo -n "XXXXXXXXXXXXXXX -- END RPM $(1) " ; date)
469 endef
470
471 $(foreach package,$(ALL),$(eval $(call target_binary_rpm,$(package))))
472
473 ### shorthand target
474 # e.g. make proper -> does propers rpms
475 # usage shorthand_target package
476 define target_shorthand 
477 $(1): $($(package).rpms)
478 .PHONY: $(1)
479 $(1)-spec: $($(package)-SPEC)
480 .PHONY: $(1)-spec
481 $(1)-mk: $($(package)-MK)
482 .PHONY: $(1)-mk
483 $(1)-tarball: $($(package).tarballs)
484 .PHONY: $(1)-tarball
485 $(1)-codebase: $($(package).codebase)
486 .PHONY: $(1)-source
487 $(1)-source: $($(package).source)
488 .PHONY: $(1)-codebase
489 $(1)-rpms: $($(package).rpms)
490 .PHONY: $(1)-rpms
491 $(1)-srpm: $($(package).srpm)
492 .PHONY: $(1)-srpm
493 endef
494
495 $(foreach package,$(ALL),$(eval $(call target_shorthand,$(package))))
496
497 ### file dependencies
498 define package_depends_on_file
499 $(1):$(2)
500 $($(1).srpm):$(2)
501 endef
502
503 define target_dependfiles
504 $(foreach file,$($(1)-DEPEND-FILES),$(eval $(call package_depends_on_file,$(1),$(file))))
505 endef
506
507 $(foreach package,$(ALL),$(eval $(call target_dependfiles,$(package))))
508
509 ### package dependencies
510 define package_depends_on_package
511 $(1):$(2)
512 $(1):$($(2).rpms)
513 $($(1).srpm):$($(2).rpms)
514 endef
515
516 define target_depends
517 $(foreach package,$($(1)-DEPEND-PACKAGES) $($(1).depend-devel-packages),$(eval $(call package_depends_on_package,$(1),$(package))))
518 endef
519
520 $(foreach package,$(ALL),$(eval $(call target_depends,$(package))))
521
522 ### clean target
523 # usage: target_clean package
524 define target_clean
525 $(1)-clean-codebase:
526         rm -rf $($(1).codebase)
527 .PHONY: $(1)-clean-codebase
528 CLEANS += $(1)-clean-codebase
529 $(1)-clean-source:
530         rm -rf $($(1).source)
531 .PHONY: $(1)-clean-source
532 CLEANS += $(1)-clean-source
533 $(1)-clean-tarball:
534         rm -rf $($(1).tarballs)
535 .PHONY: $(1)-clean-tarball
536 CLEANS += $(1)-clean-tarball
537 $(1)-clean-build:
538         rm -rf BUILD/$(notdir $($(1).source))
539 CLEANS += $(1)-clean-build
540 $(1)-clean-rpms:
541         rm -rf $($(1).rpms)
542 .PHONY: $(1)-clean-rpms
543 CLEANS += $(1)-clean-rpms
544 $(1)-clean-srpm:
545         rm -rf $($(1).srpm)
546 .PHONY: $(1)-clean-srpm
547 CLEANS += $(1)-clean-srpm
548 $(1)-codeclean: $(1)-clean-source $(1)-clean-tarball $(1)-clean-build $(1)-clean-rpms $(1)-clean-srpm
549 $(1)-clean: $(1)-clean-codebase $(1)-codeclean
550 .PHONY: $(1)-codeclean $(1)-clean 
551 $(1)-clean-spec:
552         rm -rf $($(1).specpath)
553 .PHONY: $(1)-clean-spec
554 $(1)-clean-make:
555         rm -rf MAKE/$(1).mk
556 .PHONY: $(1)-clean-make
557 $(1)-distclean: $(1)-distclean1 $(1)-distclean2
558 $(1)-distclean1: $(1)-clean-spec $(1)-clean-make
559 $(1)-distclean2: $(1)-clean
560 .PHONY: $(1)-distclean $(1)-distclean1 $(1)-distclean2
561 endef
562
563 $(foreach package,$(ALL),$(eval $(call target_clean,$(package))))
564
565 ### clean precisely
566 clean:
567         $(MAKE) $(CLEANS)
568 .PHONY: clean
569
570 clean-help:
571         @echo Available clean targets
572         @echo $(CLEANS)
573
574 ### brute force clean
575 distclean1:
576         rm -rf pldistro.mk .rpmmacros spec2make SPECS MAKE 
577 distclean2:
578         rm -rf CODEBASES SOURCES BUILD RPMS SRPMS tmp
579 distclean: distclean1 distclean2
580 .PHONY: distclean1 distclean2 distclean
581
582 develclean:
583         $(RPM-UNINSTALL-DEVEL) $(ALL-DEVEL-RPMS)
584
585 #################### produce reliable version information
586 # for a given module
587 VFORMAT="%30s := %s\n"
588 define print_version
589 $(1)-version:
590         @$(if $($(1)-SVNPATH),\
591            printf $(VFORMAT) $(1)-SVNPATH "$($(1)-SVNPATH)",\
592            printf $(VFORMAT) $(1)-CVSROOT "$($(1)-CVSROOT)" ; printf $(VFORMAT) $(1)-TAG "$($(1)-TAG)")
593 endef
594
595 # compute all modules
596 ALL-MODULES :=
597 $(foreach package,$(ALL), $(eval ALL-MODULES+=$($(package)-MODULES)))
598 ALL-MODULES:=$(sort $(ALL-MODULES))
599
600 $(foreach module,$(ALL-MODULES), $(eval $(call print_version,$(module))))
601
602 versions: $(foreach module, $(ALL-MODULES), $(module)-version)
603
604 RFORMAT="%20s :: %s\n"
605 define print_rpms
606 $(1)-version-rpms:
607         @$(foreach rpm,$($(1).rpms),printf $(RFORMAT) $(1) $(notdir $(rpm));)
608 version-rpms: $(1)-version-rpms
609 endef
610
611 $(foreach package,$(sort $(ALL)), $(eval $(call print_rpms,$(package))))
612
613 #################### include install Makefile
614 # the default is to use the distro-dependent install file
615 # however the main distro file can redefine PLDISTROINSTALL
616 ifndef PLDISTROINSTALL
617 PLDISTROINSTALL := $(PLDISTRO)-install.mk
618 endif
619 # only if present
620 -include $(PLDISTROINSTALL)
621
622 ####################
623 help:
624         @echo "********** Run make in two stages:"
625         @echo ""
626         @echo "make stage1=true PLDISTRO=onelab"
627         @echo " -> extracts all spec files in SPECS/ and mk files in MAKE/"
628         @echo "    as well as save PLDISTRO for subsequent runs"
629         @echo ""
630         @echo "********** Then you can use the following targets"
631         @echo 'make'
632         @echo "  rebuilds everything"
633         @echo 'make util-vserver'
634         @echo "  makes the RPMS related to util-vserver"
635         @echo "  equivalent to 'make util-vserver-rpms'"
636         @echo ""
637         @echo "********** Or, vertically - step-by-step for a given package"
638         @echo 'make util-vserver-codebase'
639         @echo "  performs codebase extraction in CODEBASES/util-vserver"
640         @echo 'make util-vserver-source'
641         @echo "  creates source link in SOURCES/util-vserver-<version>"
642         @echo 'make util-vserver-tarball'
643         @echo "  creates source tarball in SOURCES/util-vserver-<version>.<tarextension>"
644         @echo 'make util-vserver-srpm'
645         @echo "  build source rpm in SRPMS/"
646         @echo 'make util-vserver-rpms'
647         @echo "  build rpm(s) in RPMS/"
648         @echo ""
649         @echo "********** Or, horizontally, reach a step for all known packages"
650         @echo 'make codebases'
651         @echo 'make sources'
652         @echo 'make tarballs'
653         @echo 'make srpms'
654         @echo 'make rpms'
655         @echo ""
656         @echo "********** Cleaning examples"
657         @echo "make clean"
658         @echo "  removes the files made by make"
659         @echo "make distclean"
660         @echo "  brute-force cleaning, removes entire directories - requires a new stage1"
661         @echo "make develclean"
662         @echo "  rpm-uninstalls all devel packages installed during build"
663         @echo ""
664         @echo "make iptables-distclean"
665         @echo "  deep clean for a given package"
666         @echo "make iptables-codeclean"
667         @echo "  run this if you've made a change in the CODEBASES area for iptables"
668         @echo ""
669         @echo "make util-vserver-clean"
670         @echo "  removes codebase, source, tarball, build, rpm and srpm for util-vserver"
671         @echo "make util-vserver-clean-codebase"
672         @echo "  and so on for source, tarball, build, rpm and srpm"
673         @echo ""
674         @echo "********** Info examples"
675         @echo "make ++ALL"
676         @echo "  Displays the value of a given variable (here ALL)"
677         @echo "  with only a single plus sign only the value is displayed"
678         @echo "make ulogd.pkginfo"
679         @echo "  Displays know attributes of a package"
680         @echo "make kernel-devel.rpminfo"
681         @echo "  Displays know attributes of an rpm"
682         @echo ""
683         @echo "********** Known pakages are"
684         @echo "$(ALL)"
685
686 #################### convenience, for debugging only
687 # make +foo : prints the value of $(foo)
688 # make ++foo : idem but verbose, i.e. foo=$(foo)
689 ++%: varname=$(subst +,,$@)
690 ++%:
691         @echo "$(varname)=$($(varname))"
692 +%: varname=$(subst +,,$@)
693 +%:
694         @echo "$($(varname))"
695 ## package info
696 PKGKEYS := tarballs source codebase srpm rpms rpmnames rpm-release rpm-name rpm-version rpm-subversion
697 %.pkginfo: package=$(subst .pkginfo,,$@)
698 %.pkginfo: 
699         @$(foreach key,$(PKGKEYS),echo "$(package).$(key)=$($(package).$(key))";)
700 ## rpm info
701 RPMKEYS := rpm-path package
702 %.rpminfo: rpm=$(subst .rpminfo,,$@)
703 %.rpminfo: 
704         @$(foreach key,$(RPMKEYS),echo "$(rpm).$(key)=$($(rpm).$(key))";)