- make "all" the first target so "make" just works
[build.git] / Makefile
1 #
2 # PlanetLab RPM generation
3 #
4 # Copyright (c) 2003  The Trustees of Princeton University (Trustees).
5 # All Rights Reserved.
6
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions are
9 # met: 
10
11 #     * Redistributions of source code must retain the above copyright
12 #       notice, this list of conditions and the following disclaimer.
13
14 #     * Redistributions in binary form must reproduce the above
15 #       copyright notice, this list of conditions and the following
16 #       disclaimer in the documentation and/or other materials provided
17 #       with the distribution.
18
19 #     * Neither the name of the copyright holder nor the names of its
20 #       contributors may be used to endorse or promote products derived
21 #       from this software without specific prior written permission.
22
23 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE TRUSTEES OR
27 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #
35 # $Id: Makefile,v 1.2 2004/04/08 21:09:02 mlh-pl_rpm Exp $
36 #
37
38 # Default target
39 all:
40
41 #
42 # CVSROOT: CVSROOT to use
43 # INITIAL: CVS tag to use for Source0 tarball
44 # TAG: CVS tag to patch to
45 # MODULE: CVS module name to use
46 # SPEC: RPM spec file template
47 # RPMFLAGS: Miscellaneous RPM flags
48 # ALL: default targets
49 #
50 # If INITIAL is different than TAG, PatchSets will be generated
51 # automatically with cvsps(1) to bring Source0 up to TAG. If TAG is
52 # HEAD, a %{date} variable will be defined in the generated spec
53 # file. If a Patch: tag in the spec file matches a generated PatchSet
54 # number, the name of the patch will be as specified. Otherwise, the
55 # name of the patch will be the PatchSet number. %patch tags in the
56 # spec file are generated automatically.
57 #
58
59 #
60 # kernel-planetlab
61 #
62
63 kernel-planetlab-CVSROOT := pup-pl_kernel@cvs.planet-lab.org:/cvs
64 kernel-planetlab-INITIAL := linux-2_4_22
65 kernel-planetlab-TAG := HEAD
66 kernel-planetlab-MODULE := linux-2.4
67 kernel-planetlab-SPEC := linux-2.4/scripts/kernel-planetlab.spec
68 ALL += kernel-planetlab
69
70 #
71 # plkmod
72 #
73
74 plkmod-CVSROOT := pup-silk@cvs.planet-lab.org:/cvs
75 plkmod-INITIAL := HEAD
76 plkmod-TAG := HEAD
77 plkmod-MODULE := sys-v3
78 plkmod-SPEC := sys-v3/rpm/plkmod.spec
79 plkmod-RPMFLAGS = --define "kernelver $(shell rpmquery --queryformat '%{VERSION}-%{RELEASE}\n' --specfile SPECS/$(notdir $(kernel-planetlab-SPEC)) | head -1)"
80 ALL += plkmod
81
82 # Build kernel-planetlab first so we can bootstrap off of its build
83 plkmod: kernel-planetlab
84
85 #
86 # vdk
87 #
88
89 vdk-CVSROOT := pup-pl_kernel@cvs.planet-lab.org:/cvs
90 vdk-INITIAL := vdk_918
91 vdk-TAG := HEAD
92 vdk-MODULE := vdk
93 vdk-SPEC := vdk/vtune_driver.spec
94 vdk-RPMFLAGS = --define "kernelver $(shell rpmquery --queryformat '%{VERSION}-%{RELEASE}\n' --specfile SPECS/$(notdir $(kernel-planetlab-SPEC)) | head -1)"
95 ALL += vdk
96
97 # Build kernel-planetlab first so we can bootstrap off of its build
98 vdk: kernel-planetlab
99
100 #
101 # vserver
102 #
103
104 vserver-CVSROOT := pup-pl_kernel@cvs.planet-lab.org:/cvs
105 vserver-INITIAL := vserver-0_29
106 vserver-TAG := HEAD
107 vserver-MODULE := vserver
108 vserver-SPEC := vserver/vserver.spec
109 ALL += vserver
110
111 ifeq ($(findstring $(package),$(ALL)),)
112
113 # Build all packages
114 all: $(ALL)
115
116 # Recurse
117 $(ALL):
118         $(MAKE) package=$@
119
120 .PHONY: all $(ALL)
121
122 else
123
124 # Define variables for Makerules
125 CVSROOT := $($(package)-CVSROOT)
126 INITIAL := $($(package)-INITIAL)
127 TAG := $($(package)-TAG)
128 MODULE := $($(package)-MODULE)
129 SPEC := $($(package)-SPEC)
130 RPMFLAGS := $($(package)-RPMFLAGS)
131 CVS_RSH := $(if $($(package)-CVS_RSH),$($(package)-CVS_RSH),ssh)
132
133 include Makerules
134
135 endif
136
137 # Remove generated files
138 clean:
139         rm -rf BUILD RPMS SOURCES SPECS SRPMS .rpmmacros .cvsps
140
141 .PHONY: clean