added PlanetLabKeys
[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.11 2004/04/12 14:12:41 alk-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 #
112 # vserver-init
113 #
114
115 vserver-init-CVSROOT := pup-pl_kernel@cvs.planet-lab.org:/cvs
116 vserver-init-INITIAL := HEAD
117 vserver-init-TAG := HEAD
118 vserver-init-MODULE := vserver-init
119 vserver-init-SPEC := vserver-init/vserver-init.spec
120 ALL += vserver-init
121
122 #
123 # vsh
124 #
125
126 vsh-CVSROOT := pup-pl_kernel@cvs.planet-lab.org:/cvs
127 vsh-INITIAL := bash-2_05
128 vsh-TAG := HEAD
129 vsh-MODULE := vsh
130 vsh-SPEC := vsh/vsh-planetlab.spec
131 ALL += vsh
132
133 # Build kernel-planetlab first so we can bootstrap off of its build
134 vsh: kernel-planetlab
135
136 #
137 # yum
138 #
139
140 yum-CVSROOT := pup-node_pkgs@cvs.planet-lab.org:/cvs
141 yum-INITIAL := YUM_2_0_3
142 yum-TAG := YUM_2_0_3_PL_7
143 yum-MODULE := yum
144 yum-SPEC := yum/yum.spec
145 ALL += yum
146
147 #
148 # ksymoops
149 #
150
151 ksymoops-CVSROOT := pup-pl_kernel@cvs.planet-lab.org:/cvs
152 ksymoops-INITIAL := ksymoops-2_4_9
153 ksymoops-TAG := HEAD
154 ksymoops-MODULE := ksymoops
155 ksymoops-SPEC := ksymoops/ksymoops.spec
156 ALL += ksymoops
157
158 #
159 # PlanetLabAccounts
160 #
161
162 PlanetLabAccounts-CVSROOT := pup-node_pkgs@cvs.planet-lab.org:/cvs
163 PlanetLabAccounts-INITIAL := PLANETLABACCOUNTS_0_3_R_2
164 PlanetLabAccounts-TAG := PLANETLABACCOUNTS_0_3_R_2
165 PlanetLabAccounts-MODULE := PlanetLabAccounts
166 PlanetLabAccounts-SPEC := PlanetLabAccounts/PlanetLabAccounts.spec
167 ALL += PlanetLabAccounts
168
169 #
170 # MAKEDEV
171 #
172
173 MAKEDEV-CVSROOT := pup-node_pkgs@cvs.planet-lab.org:/cvs
174 MAKEDEV-INITIAL := MAKEDEV_3_2_2
175 MAKEDEV-TAG := MAKEDEV_3_2_2_PL_6
176 MAKEDEV-MODULE := MAKEDEV
177 MAKEDEV-SPEC := MAKEDEV/MAKEDEV.spec
178 ALL += MAKEDEV
179
180 #
181 # NodeUpdate
182 #
183
184 NodeUpdate-CVSROOT := pup-node_pkgs@cvs.planet-lab.org:/cvs
185 NodeUpdate-INITIAL := NODEUPDATE_0_2_R_3
186 NodeUpdate-TAG := NODEUPDATE_0_2_R_3
187 NodeUpdate-MODULE := NodeUpdate
188 NodeUpdate-SPEC := NodeUpdate/NodeUpdate.spec
189 ALL += NodeUpdate
190
191 #
192 # PlanetLabConf
193 #
194
195 PlanetLabConf-CVSROOT := pup-node_pkgs@cvs.planet-lab.org:/cvs
196 PlanetLabConf-INITIAL := PLANETLABCONF_0_1_R_12
197 PlanetLabConf-TAG := PLANETLABCONF_0_1_R_12
198 PlanetLabConf-MODULE := PlanetLabConf
199 PlanetLabConf-SPEC := PlanetLabConf/PlanetLabConf.spec
200 ALL += PlanetLabConf
201
202 #
203 # PlanetLabKeys
204 #
205
206 PlanetLabKeys-CVSROOT := pup-node_pkgs@cvs.planet-lab.org:/cvs
207 PlanetLabKeys-INITIAL := PLANETLABKEYS_0_1_R_3
208 PlanetLabKeys-TAG := PLANETLABKEYS_0_1_R_3
209 PlanetLabKeys-MODULE := PlanetLabKeys
210 PlanetLabKeys-SPEC := PlanetLabKeys/PlanetLabKeys.spec
211 ALL += PlanetLabKeys
212
213 ifeq ($(findstring $(package),$(ALL)),)
214
215 # Build all packages
216 all: $(ALL)
217
218 # Recurse
219 $(ALL):
220         $(MAKE) package=$@
221
222 .PHONY: all $(ALL)
223
224 else
225
226 # Define variables for Makerules
227 CVSROOT := $($(package)-CVSROOT)
228 INITIAL := $($(package)-INITIAL)
229 TAG := $($(package)-TAG)
230 MODULE := $($(package)-MODULE)
231 SPEC := $($(package)-SPEC)
232 RPMFLAGS := $($(package)-RPMFLAGS)
233 CVS_RSH := $(if $($(package)-CVS_RSH),$($(package)-CVS_RSH),ssh)
234
235 include Makerules
236
237 endif
238
239 # Remove generated files
240 clean:
241         rm -rf BUILD RPMS SOURCES SPECS SRPMS .rpmmacros .cvsps
242
243 .PHONY: clean