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