~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to scripts/conf-riscos/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2006-01-24 04:31:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060124043142-pbg192or6qxv3yk2
Tags: 1.9.20-1
* New Upstream version. Closes:#306890,#344530
  * Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files 
* Depend on libopensc2-dev, not -1-. Closes:#348106

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for the RISC OS version of GnuPG
 
2
CC=cc
 
3
LINK=link
 
4
AS=objasm
 
5
MAKE=amu
 
6
DEPEND=-depend !Depend
 
7
LIBLDAP=^.^.openldap-2/0/18
 
8
CC_FLAGS=-Wpc -apcs 3/26bit/fpe2 -throwback -Otime -IUnix:,include,mpi,intl,zlib,$(LIBLDAP).include -JUnix: -D__riscos__ -DHAVE_CONFIG_H -DNO_ASM -UIS_MODULE -DVERSION="\"$(GnuPG$Version)\"" $(GnuPG$DevDefine)
 
9
AS_FLAGS=-apcs 3/26bit -throwback -predefine "ARMv4 SETA 0"
 
10
LD_FLAGS=Unix:o.unixlib
 
11
CIPHER_OBJS=cipher.o.blowfish \
 
12
        cipher.o.cast5 \
 
13
        cipher.o.cipher \
 
14
        cipher.o.des \
 
15
        cipher.o.dsa \
 
16
        cipher.o.dynload \
 
17
        cipher.o.elgamal \
 
18
        cipher.o.g10c \
 
19
        cipher.o.md \
 
20
        cipher.o.md5 \
 
21
        cipher.o.primegen \
 
22
        cipher.o.pubkey \
 
23
        cipher.o.random \
 
24
        cipher.o.rijndael \
 
25
        cipher.o.rmd160 \
 
26
        cipher.o.rndriscos \
 
27
        cipher.o.rsa \
 
28
        cipher.o.sha1 \
 
29
        cipher.o.smallprime \
 
30
        cipher.o.tiger32 \
 
31
        cipher.o.twofish
 
32
GETTEXT_OBJS=intl.o.bindtextdom \
 
33
        intl.o.dcgettext \
 
34
        intl.o.dgettext \
 
35
        intl.o.explodename \
 
36
        intl.o.finddomain \
 
37
        intl.o.gettext \
 
38
        intl.o.intl-compat \
 
39
        intl.o.l10nflist \
 
40
        intl.o.loadmsgcat \
 
41
        intl.o.localealias \
 
42
        intl.o.textdomain
 
43
MPI_OBJS=mpi.o.mpi-add \
 
44
        mpi.o.mpi-bit \
 
45
        mpi.o.mpi-cmp \
 
46
        mpi.o.mpi-div \
 
47
        mpi.o.mpi-gcd \
 
48
        mpi.o.mpi-inline \
 
49
        mpi.o.mpi-inv \
 
50
        mpi.o.mpi-mul \
 
51
        mpi.o.mpi-pow \
 
52
        mpi.o.mpi-mpow \
 
53
        mpi.o.mpi-scan \
 
54
        mpi.o.mpicoder \
 
55
        mpi.o.mpih-div \
 
56
        mpi.o.mpih-mul \
 
57
        mpi.o.mpiutil \
 
58
        mpi.o.g10m \
 
59
        mpi.arm.o.mpih
 
60
UTIL_OBJS=util.o.argparse \
 
61
        util.o.dotlock \
 
62
        util.o.errors \
 
63
        util.o.fileutil \
 
64
        util.o.g10u \
 
65
        util.o.http \
 
66
        util.o.iobuf \
 
67
        util.o.logger \
 
68
        util.o.memory \
 
69
        util.o.miscutil \
 
70
        util.o.secmem \
 
71
        util.o.strgutil \
 
72
        util.o.ttyio \
 
73
        util.o.riscos
 
74
ZLIB_OBJS=zlib.o.adler32 \
 
75
        zlib.o.compress \
 
76
        zlib.o.crc32 \
 
77
        zlib.o.deflate \
 
78
        zlib.o.infblock \
 
79
        zlib.o.infcodes \
 
80
        zlib.o.inffast \
 
81
        zlib.o.inflate \
 
82
        zlib.o.inftrees \
 
83
        zlib.o.infutil \
 
84
        zlib.o.trees \
 
85
        zlib.o.uncompr \
 
86
        zlib.o.zutil
 
87
G10_OBJS=g10.o.armor \
 
88
        g10.o.build-packet \
 
89
        g10.o.cipher \
 
90
        g10.o.comment \
 
91
        g10.o.compress \
 
92
        g10.o.dearmor \
 
93
        g10.o.decrypt \
 
94
        g10.o.delkey \
 
95
        g10.o.encode \
 
96
        g10.o.encr-data \
 
97
        g10.o.exec \
 
98
        g10.o.export \
 
99
        g10.o.free-packet \
 
100
        g10.o.g10 \
 
101
        g10.o.getkey \
 
102
        g10.o.helptext \
 
103
        g10.o.hkp \
 
104
        g10.o.import \
 
105
        g10.o.kbnode \
 
106
        g10.o.keydb \
 
107
        g10.o.keyedit \
 
108
        g10.o.keygen \
 
109
        g10.o.keyid \
 
110
        g10.o.keylist \
 
111
        g10.o.keyring \
 
112
        g10.o.keyserver \
 
113
        g10.o.mainproc \
 
114
        g10.o.mdfilter \
 
115
        g10.o.misc \
 
116
        g10.o.mkdtemp \
 
117
        g10.o.openfile \
 
118
        g10.o.parse-packet \
 
119
        g10.o.passphrase \
 
120
        g10.o.photoid \
 
121
        g10.o.pipemode \
 
122
        g10.o.pkclist \
 
123
        g10.o.plaintext \
 
124
        g10.o.pubkey-enc \
 
125
        g10.o.revoke \
 
126
        g10.o.seckey-cert \
 
127
        g10.o.seskey \
 
128
        g10.o.sig-check \
 
129
        g10.o.sign \
 
130
        g10.o.signal \
 
131
        g10.o.skclist \
 
132
        g10.o.status \
 
133
        g10.o.tdbdump \
 
134
        g10.o.tdbio \
 
135
        g10.o.textfilter \
 
136
        g10.o.trustdb \
 
137
        g10.o.verify
 
138
GPGV_OBJS=g10.o.armor \
 
139
        g10.o.build-packet \
 
140
        g10.o.compress \
 
141
        g10.o.free-packet \
 
142
        g10.o.getkey \
 
143
        g10.o.gpgv \
 
144
        g10.o.keydb \
 
145
        g10.o.keylist \
 
146
        g10.o.kbnode \
 
147
        g10.o.keyid \
 
148
        g10.o.keyring \
 
149
        g10.o.mainproc \
 
150
        g10.o.mdfilter \
 
151
        g10.o.misc \
 
152
        g10.o.openfile \
 
153
        g10.o.parse-packet \
 
154
        g10.o.plaintext \
 
155
        g10.o.seskey \
 
156
        g10.o.sig-check \
 
157
        g10.o.signal \
 
158
        g10.o.status \
 
159
        g10.o.textfilter \
 
160
        g10.o.verify \
 
161
        util.o.argparse \
 
162
        util.o.errors \
 
163
        util.o.fileutil \
 
164
        util.o.g10u \
 
165
        util.o.iobuf \
 
166
        util.o.logger \
 
167
        util.o.memory \
 
168
        util.o.miscutil \
 
169
        util.o.secmem \
 
170
        util.o.strgutil \
 
171
        util.o.riscos \
 
172
        cipher.o.dsa \
 
173
        cipher.o.dynload \
 
174
        cipher.o.elgamal \
 
175
        cipher.o.g10c \
 
176
        cipher.o.md \
 
177
        cipher.o.md5 \
 
178
        cipher.o.pubkey \
 
179
        cipher.o.rmd160 \
 
180
        cipher.o.rsa \
 
181
        cipher.o.sha1 \
 
182
        cipher.o.tiger32 \
 
183
        mpi.mpi \
 
184
        zlib.zlib
 
185
GPGKEYS_OBJS=util.o.riscos \
 
186
        util.o.strgutil \
 
187
        util.o.memory \
 
188
        util.o.logger \
 
189
        util.o.secmem \
 
190
        intl.gettext
 
191
 
 
192
## Rule Patterns ##
 
193
 
 
194
.SUFFIXES:      .c .o .s
 
195
 
 
196
.c.o:
 
197
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o $@ $<
 
198
 
 
199
.s.o:
 
200
        $(AS) $(AS_FLAGS) $(DEPEND) $< $@
 
201
 
 
202
# Static dependencies:
 
203
 
 
204
all:
 
205
        @echo Use one of the following as target:
 
206
        @echo |  dev   to build the development version
 
207
        @echo |  dist  to build the distribution with all archives
 
208
        @echo All other targets are internal and shouldn't be used!
 
209
 
 
210
cipher.cipher: $(CIPHER_OBJS)
 
211
        $(LINK) -aof $(CIPHER_OBJS) -o cipher.cipher
 
212
 
 
213
intl.gettext: $(GETTEXT_OBJS)
 
214
        $(LINK) -aof $(GETTEXT_OBJS) -o intl.gettext
 
215
 
 
216
mpi.mpi: $(MPI_OBJS)
 
217
        $(LINK) -aof $(MPI_OBJS) -o mpi.mpi
 
218
 
 
219
tools.gpgsplit: tools.o.gpgsplit util.util intl.gettext zlib.zlib
 
220
        $(LINK) $(LD_FLAGS) tools.o.gpgsplit util.util intl.gettext zlib.zlib -o tools.gpgsplit
 
221
        -squeeze tools.gpgsplit
 
222
        -copy tools.gpgsplit ADFS::A5.$.tmp.!GnuPG.gpgsplit ~CF~V
 
223
 
 
224
keyserver.gpgkeys_ldap: keyserver.o.gpgkeys_ldap $(GPGKEYS_OBJS) $(LIBLDAP).libraries.libldap.libldap
 
225
        $(LINK) $(LD_FLAGS) keyserver.o.gpgkeys_ldap $(GPGKEYS_OBJS) $(LIBLDAP).libraries.libldap.libldap -o keyserver.gpgkeys_ldap
 
226
        -squeeze keyserver.gpgkeys_ldap
 
227
        -copy keyserver.gpgkeys_ldap ADFS::A5.$.tmp.!GnuPG.gpgkeys_ldap ~CF~V
 
228
 
 
229
riscos.jpegview.jpegview:
 
230
        -dir riscos.jpegview
 
231
        -$(MAKE)
 
232
        -back
 
233
 
 
234
util.util: $(UTIL_OBJS)
 
235
        $(LINK) -aof $(UTIL_OBJS) -o util.util
 
236
 
 
237
zlib.zlib: $(ZLIB_OBJS)
 
238
        $(LINK) -aof zlib.o.* -o zlib.zlib
 
239
 
 
240
g10.gpg: $(G10_OBJS) cipher.o.idea cipher.cipher intl.gettext mpi.mpi util.util zlib.zlib BUILD
 
241
        $(LINK) $(G10_OBJS) $(LD_FLAGS) cipher.o.idea cipher.cipher intl.gettext mpi.mpi util.util zlib.zlib -o g10.gpg
 
242
        -copy g10.gpg ADFS::A5.$.tmp.!GnuPG.gpg ~CFR~V
 
243
 
 
244
g10.gpgv: $(GPGV_OBJS) intl.gettext BUILD
 
245
        $(LINK) $(GPGV_OBJS) intl.gettext $(LD_FLAGS) -o g10.gpgv
 
246
        -copy g10.gpgv ADFS::A5.$.tmp.!GnuPG.gpgv ~CFR~V
 
247
 
 
248
g10.gpgpart: $(G10_OBJS) cipher.cipher intl.gettext mpi.mpi util.util zlib.zlib BUILD
 
249
        drlink034 -aof $(G10_OBJS) $(LD_FLAGS) cipher.cipher intl.gettext mpi.mpi util.util zlib.zlib -o g10.gpgpart
 
250
 
 
251
select-idea-src:
 
252
        -copy distrib.idea-addon.cipher.c.idea cipher.c.idea ~CF~NR~V
 
253
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o cipher.o.idea cipher.c.idea
 
254
 
 
255
select-gpl-src:
 
256
        -copy distrib.non-idea.cipher.c.idea cipher.c.idea ~CF~NR~V
 
257
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o cipher.o.idea cipher.c.idea
 
258
 
 
259
distrib.gnupgsrc/zip: select-gpl-src
 
260
        -zip -9@ distrib.gnupgsrc/zip < distrib.resources.distfiles
 
261
 
 
262
distrib.gnupg/zip: distrib.gpl-bin.!GnuPG.JPEGview distrib.gpl-bin.!GnuPG.gpgsplit distrib.gpl-bin.!GnuPG.gpg distrib.gpl-bin.!GnuPG.gpgv select-gpl-src
 
263
        -copy distrib.resources.History distrib.gpl-bin.History ~CFR~V
 
264
        -copy distrib.resources.Upgrading distrib.gpl-bin.Upgrading ~CFR~V
 
265
        -copy distrib.resources.ReadMe_bin distrib.gpl-bin.!ReadMe1st ~CFR~V
 
266
        -copy distrib.resources.!GnuPG distrib.gpl-bin.!GnuPG ~CFR~V
 
267
        -copy distrib.resources.!GnuPGUser distrib.gpl-bin.!GnuPGUser ~CFR~V
 
268
        -copy distrib.resources.!System distrib.gpl-bin.!System ~CFR~V
 
269
        -copy distrib.resources.orig_docs distrib.gpl-bin.orig_docs ~CFR~V
 
270
        -dir distrib.gpl-bin
 
271
        -zip -r9 ^.gnupg/zip *
 
272
        -back
 
273
 
 
274
distrib.gnupgdev/zip: distrib.private.!GnuPG.JPEGview distrib.private.!GnuPG.gpgsplit distrib.private.!GnuPG.gpgkeys_ldap distrib.private.!GnuPG.gpg distrib.private.!GnuPG.gpgv select-idea-src
 
275
        -ifthere distrib.private.!GnuPG.locale then wipe distrib.private.!GnuPG.locale ~CFR~V
 
276
        -copy distrib.intl.!GnuPG.locale distrib.private.!GnuPG.locale ~CFR~V
 
277
        -copy distrib.resources.History distrib.private.History ~CFR~V
 
278
        -copy distrib.resources.Upgrading distrib.private.Upgrading ~CFR~V
 
279
        -copy distrib.resources.ReadMe_bin distrib.private.!ReadMe1st ~CFR~V
 
280
        -copy distrib.resources.!GnuPG distrib.private.!GnuPG ~CFR~V
 
281
        -copy distrib.resources.!GnuPGUser distrib.private.!GnuPGUser ~CFR~V
 
282
        -copy distrib.resources.!System distrib.private.!System ~CFR~V
 
283
        -copy distrib.resources.orig_docs distrib.private.orig_docs ~CFR~V
 
284
        -dir distrib.private
 
285
        -zip -r9 ^.gnupgdev/zip *
 
286
        -back
 
287
 
 
288
distrib.gnupgidea/zip: cipher.o.idea select-idea-src
 
289
        -copy distrib.resources.ReadMe_idea distrib.idea-addon.!ReadMe ~CFR~V
 
290
        -copy cipher.o.idea distrib.idea-addon.cipher.o.idea ~CFR~V
 
291
        -dir distrib.idea-addon
 
292
        -zip -r9 ^.gnupgidea/zip *
 
293
        -back
 
294
 
 
295
distrib.gnupgpart/zip: g10.gpgpart select-idea-src
 
296
        -copy distrib.resources.ReadMe_part distrib.part.!ReadMe1st ~CFR~V
 
297
        -copy g10.gpgpart distrib.part.g10.gpgpart ~CFR~V
 
298
        -dir distrib.part
 
299
        -zip -r9 ^.gnupgpart/zip *
 
300
        -back
 
301
 
 
302
distrib.gnupgldap/zip: keyserver.gpgkeys_ldap
 
303
        -copy distrib.resources.ReadMe_ldap distrib.ldap.!ReadMe ~CFR~V
 
304
        -copy keyserver.gpgkeys_ldap distrib.ldap.!GnuPG.gpgkeys_ldap ~CFR~V
 
305
        -dir distrib.ldap
 
306
        -zip -r9 ^.gnupgldap/zip *
 
307
        -back
 
308
 
 
309
distrib.gnupgintl/zip:
 
310
        -dir distrib.intl
 
311
        -zip -r9 ^.gnupgintl/zip *
 
312
        -back
 
313
 
 
314
distrib.gpl-bin.!GnuPG.gpg: g10.gpg
 
315
        -copy g10.gpg distrib.gpl-bin.!GnuPG.gpg ~CFR~V
 
316
        -squeeze distrib.gpl-bin.!GnuPG.gpg
 
317
 
 
318
distrib.gpl-bin.!GnuPG.gpgv: g10.gpgv
 
319
        -copy g10.gpgv distrib.gpl-bin.!GnuPG.gpgv ~CFR~V
 
320
        -squeeze distrib.gpl-bin.!GnuPG.gpgv
 
321
 
 
322
distrib.gpl-bin.!GnuPG.gpgsplit: tools.gpgsplit
 
323
        -copy tools.gpgsplit distrib.gpl-bin.!GnuPG.gpgsplit ~CFR~V
 
324
        -squeeze distrib.gpl-bin.!GnuPG.gpgsplit
 
325
 
 
326
distrib.gpl-bin.!GnuPG.JPEGview: riscos.jpegview.jpegview
 
327
        -copy riscos.jpegview.jpegview distrib.gpl-bin.!GnuPG.JPEGview ~CFR~V
 
328
 
 
329
distrib.private.!GnuPG.gpg: g10.gpg
 
330
        -copy g10.gpg distrib.private.!GnuPG.gpg ~CFR~V
 
331
        -squeeze distrib.private.!GnuPG.gpg
 
332
 
 
333
distrib.private.!GnuPG.gpgv: g10.gpgv
 
334
        -copy g10.gpgv distrib.private.!GnuPG.gpgv ~CFR~V
 
335
        -squeeze distrib.private.!GnuPG.gpgv
 
336
 
 
337
distrib.private.!GnuPG.gpgsplit: tools.gpgsplit
 
338
        -copy tools.gpgsplit distrib.private.!GnuPG.gpgsplit ~CFR~V
 
339
        -squeeze distrib.private.!GnuPG.gpgsplit
 
340
 
 
341
distrib.private.!GnuPG.gpgkeys_ldap: keyserver.gpgkeys_ldap
 
342
        -copy keyserver.gpgkeys_ldap distrib.private.!GnuPG.gpgkeys_ldap ~CFR~V
 
343
        -squeeze distrib.private.!GnuPG.gpgkeys_ldap
 
344
 
 
345
distrib.private.!GnuPG.JPEGview: riscos.jpegview.jpegview
 
346
        -copy riscos.jpegview.jpegview distrib.private.!GnuPG.JPEGview ~CFR~V
 
347
 
 
348
clean-cipher:
 
349
        -ifthere cipher.o.* then wipe cipher.o.* ~CFR~V
 
350
        -ifthere cipher.cipher then wipe cipher.cipher ~CFR~V
 
351
 
 
352
clean-intl:
 
353
        -ifthere intl.o.* then wipe intl.o.* ~CFR~V
 
354
        -ifthere intl.gettext then wipe intl.gettext ~CFR~V
 
355
 
 
356
clean-mpi:
 
357
        -ifthere mpi.o.* then wipe mpi.o.* ~CFR~V
 
358
        -ifthere mpi.arm.o.* then wipe mpi.arm.o.* ~CFR~V
 
359
        -ifthere mpi.mpi then wipe mpi.mpi ~CFR~V
 
360
 
 
361
clean-util:
 
362
        -ifthere util.o.* then wipe util.o.* ~CFR~V
 
363
        -ifthere util.util then wipe util.util ~CFR~V
 
364
 
 
365
clean-zlib:
 
366
        -ifthere zlib.o.* then wipe zlib.o.* ~CFR~V
 
367
        -ifthere zlib.zlib then wipe zlib.zlib ~CFR~V
 
368
 
 
369
clean-dist:
 
370
        -ifthere distrib.*/zip then wipe distrib.*/zip ~CFR~V
 
371
 
 
372
clean-g10:
 
373
        -ifthere g10.gpg then wipe g10.gpg ~CFR~V
 
374
        -ifthere g10.gpgv then wipe g10.gpgv ~CFR~V
 
375
        -ifthere g10.gpgpart then wipe g10.gpgpart ~CFR~V
 
376
        -ifthere g10.o.* then wipe g10.o.* ~CFR~V
 
377
 
 
378
clean-keyserver:
 
379
        -ifthere keyserver.gpgkeys_ldap then wipe keyserver.gpgkeys_ldap ~CFR~V
 
380
        -ifthere keyserver.o.* then wipe keyserver.o.* ~CFR~V
 
381
 
 
382
clean-tools:
 
383
        -ifthere tools.gpgsplit then wipe tools.gpgsplit ~CFR~V
 
384
        -ifthere tools.o.* then wipe tools.o.* ~CFR~V
 
385
 
 
386
clean-riscos:
 
387
        -ifthere riscos.jpegview.jpegview then wipe riscos.jpegview.jpegview ~CFR~V
 
388
 
 
389
clean-version:
 
390
        -ifthere g10.o.armor then wipe g10.o.armor ~CFR~V
 
391
        -ifthere g10.o.encode then wipe g10.o.encode ~CFR~V
 
392
        -ifthere g10.o.g10 then wipe g10.o.g10 ~CFR~V
 
393
        -ifthere g10.o.gpgv then wipe g10.o.gpgv ~CFR~V
 
394
        -ifthere g10.o.keygen then wipe g10.o.keygen ~CFR~V
 
395
        -ifthere g10.o.sign then wipe g10.o.sign ~CFR~V
 
396
        -ifthere g10.gpg then wipe g10.gpg ~CFR~V
 
397
        -ifthere g10.gpgv then wipe g10.gpgv ~CFR~V
 
398
        -ifthere g10.gpgpart then wipe g10.gpgpart ~CFR~V
 
399
 
 
400
clean: clean-dist clean-cipher clean-intl clean-mpi clean-util clean-zlib clean-g10 clean-keyserver clean-tools clean-riscos
 
401
 
 
402
g10.o.armor: BUILD
 
403
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o g10.o.armor g10.c.armor
 
404
 
 
405
g10.o.encode: BUILD
 
406
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o g10.o.encode g10.c.encode
 
407
 
 
408
g10.o.g10: BUILD
 
409
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o g10.o.g10 g10.c.g10
 
410
 
 
411
g10.o.gpgv: BUILD
 
412
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o g10.o.gpgv g10.c.gpgv
 
413
 
 
414
g10.o.keygen: BUILD
 
415
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o g10.o.keygen g10.c.keygen
 
416
 
 
417
g10.o.sign: BUILD
 
418
        $(CC) $(CC_FLAGS) $(DEPEND) -c -o g10.o.sign g10.c.sign
 
419
 
 
420
dev: clean-version
 
421
        $(MAKE) fast-dev
 
422
 
 
423
fast-dev: BUILD
 
424
        setver configure/ac AC_INIT(gnupg, , dev
 
425
        wipe distrib.private.!GnuPG.gpg* ~CFR~V
 
426
        -$(MAKE) keyserver.gpgkeys_ldap
 
427
        $(MAKE) tools.gpgsplit
 
428
        $(MAKE) distrib.gnupgdev/zip
 
429
        ifthere <WebServe$ServeRoot>.private.gnupgdev/zip then wipe <WebServe$ServeRoot>.private.gnupgdev/zip ~CFR~V
 
430
        rename distrib.gnupgdev/zip <WebServe$ServeRoot>.private.gnupgdev/zip
 
431
 
 
432
dist: BUILD clean-version tools.gpgsplit
 
433
        setver configure/ac AC_INIT(gnupg, , dist
 
434
        wipe distrib.gpl-bin.!GnuPG.gpg* ~CFR~V
 
435
        $(MAKE) distrib.gnupg/zip
 
436
        $(MAKE) distrib.gnupgidea/zip
 
437
        $(MAKE) distrib.gnupgpart/zip
 
438
        wipe distrib.private.!GnuPG.gpg* ~CFR~V
 
439
        $(MAKE) distrib.gnupgdev/zip
 
440
        $(MAKE) distrib.gnupgsrc/zip
 
441
        $(MAKE) distrib.gnupgintl/zip
 
442
        $(MAKE) distrib.gnupgldap/zip
 
443
        $(MAKE) select-idea-src
 
444
        ifthere <WebServe$ServeRoot>.archives.gnupg/zip then wipe <WebServe$ServeRoot>.archives.gnupg/zip ~CFR~V
 
445
        ifthere <WebServe$ServeRoot>.private.gnupgdev/zip then wipe <WebServe$ServeRoot>.private.gnupgdev/zip ~CFR~V
 
446
        ifthere <WebServe$ServeRoot>.archives.gnupgidea/zip then wipe <WebServe$ServeRoot>.archives.gnupgidea/zip ~CFR~V
 
447
        ifthere <WebServe$ServeRoot>.archives.gnupgpart/zip then wipe <WebServe$ServeRoot>.archives.gnupgpart/zip ~CFR~V
 
448
        ifthere <WebServe$ServeRoot>.archives.gnupgsrc/zip then wipe <WebServe$ServeRoot>.archives.gnupgsrc/zip ~CFR~V
 
449
        ifthere <WebServe$ServeRoot>.archives.gnupgintl/zip then wipe <WebServe$ServeRoot>.archives.gnupgintl/zip ~CFR~V
 
450
        ifthere <WebServe$ServeRoot>.archives.gnupgldap/zip then wipe <WebServe$ServeRoot>.archives.gnupgldap/zip ~CFR~V
 
451
        ifthere <WebServe$ServeRoot>.gnupg_history/txt then wipe <WebServe$ServeRoot>.gnupg_history/txt ~CFR~V
 
452
        ifthere <WebServe$ServeRoot>.gnupg_news/txt then wipe <WebServe$ServeRoot>.gnupg_news/txt ~CFR~V
 
453
        rename distrib.gnupgdev/zip <WebServe$ServeRoot>.private.gnupgdev/zip
 
454
        rename distrib.gnupg/zip <WebServe$ServeRoot>.archives.gnupg/zip
 
455
        rename distrib.gnupgidea/zip <WebServe$ServeRoot>.archives.gnupgidea/zip
 
456
        rename distrib.gnupgpart/zip <WebServe$ServeRoot>.archives.gnupgpart/zip
 
457
        rename distrib.gnupgsrc/zip <WebServe$ServeRoot>.archives.gnupgsrc/zip
 
458
        rename distrib.gnupgintl/zip <WebServe$ServeRoot>.archives.gnupgintl/zip
 
459
        rename distrib.gnupgldap/zip <WebServe$ServeRoot>.archives.gnupgldap/zip
 
460
        copy distrib.resources.History <WebServe$ServeRoot>.gnupg_history/txt ~CFR~V
 
461
        copy distrib.resources.orig_docs.NEWS <WebServe$ServeRoot>.gnupg_news/txt ~CFR~V
 
462
        unset GnuPG$DevDefine
 
463
        unset GnuPG$Version
 
464
        updatesigs <WebServe$ServeRoot>.archives --secring adfs::ap.$.secring/gpg
 
465
 
 
466
# Dynamic dependencies: