~ubuntu-branches/ubuntu/saucy/unzip/saucy

« back to all changes in this revision

Viewing changes to amiga/smakefile

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2009-05-08 20:02:40 UTC
  • mfrom: (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090508200240-rk23wg0jdoyc6caj
Tags: 6.0-1
* New upstream release. Closes: #496989.
* Enabled new Unicode support. Closes: #197427. This may or may not work
  for your already created zipfiles, but it's not a bug unless they were
  created using the Unicode feature present in zip 3.0.
* Built using DATE_FORMAT=DF_YMD so that unzip -l show dates in ISO format,
  as that's the only available one which makes sense. Closes: #312886.
* Enabled new bzip2 support. Closes: #426798.
* Exit code for zipgrep should now be the right one. Closes: #441997.
* The reason why a file may not be created is now shown. Closes: #478791.
* Summary of changes in this version not being the debian/* files:
- Manpages in section 1, not 1L.
- Branding patch. UnZip by Debian. Original by Info-ZIP.
- Always #include <unistd.h>. Debian GNU/kFreeBSD needs it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#===========================================================================
2
2
# Makefile for UnZip, ZipInfo, fUnZip, MakeSFX      AMIGA SAS/C Version 6.58
3
 
# Version:  5.5                                     last revised:  13 Feb 01
 
3
# Version:  5.53                                    last revised:  25 Dec 06
4
4
#===========================================================================
5
5
# from John Bush <john.bush@east.sun.com>
6
6
#            or: <JBush@bix.com>
307
307
 
308
308
 
309
309
# UnZip Objects
310
 
OBJS1 = unzip$(O) crc32$(O) crctab$(O) crypt$(O) envargs$(O) explode$(O)
 
310
OBJS1 = unzip$(O) crc32$(O) crypt$(O) envargs$(O) explode$(O)
311
311
OBJS2 = extract$(O) fileio$(O) globals$(O) list$(O) inflate$(O) match$(O)
312
 
OBJS3 = process$(O) ttyio$(O) unreduce$(O) unshrink$(O) zipinfo$(O)
 
312
OBJS3 = process$(O) ttyio$(O) ubz2err$(O) unreduce$(O) unshrink$(O) zipinfo$(O)
313
313
OBJSA = amiga$(O) timezone$(O)
314
314
OBJS  = $(OBJS1) $(OBJS2) $(OBJS3) $(OBJSA)
315
315
 
316
316
# UnZipSFX Objects
317
317
OBJX1 = unzip$(OX) extract$(OX) inflate$(OX) match$(OX) process$(OX)
318
 
OBJXI = crypt$(OX) crc32$(O) crctab$(OX) fileio$(OX) globals$(OX) ttyio$(OX)
 
318
OBJXI = crypt$(OX) crc32$(OX) fileio$(OX) globals$(OX) ttyio$(OX) ubz2err$(OX)
319
319
OBJXA = amiga$(OX) timezone$(OX)
320
320
OBJX  = $(OBJX1) $(OBJXI) $(OBJXA)
321
321
 
429
429
filedate$(O):       amiga/filedate.c crypt.h timezone.h
430
430
api$(O):            api.c      $(UNZIP_H) unzvers.h #zlib.h
431
431
apihelp$(O):        apihelp.c  $(UNZIP_H) unzvers.h
432
 
crc32$(O):          crc32.c    $(UNZIP_H) zip.h
433
 
crctab$(O):         crctab.c   $(UNZIP_H) zip.h
434
 
crypt$(O):          crypt.c    $(UNZIP_H) zip.h crypt.h ttyio.h
 
432
crc32$(O):          crc32.c    $(UNZIP_H) zip.h crc32.h
 
433
crypt$(O):          crypt.c    $(UNZIP_H) zip.h crypt.h crc32.h ttyio.h
435
434
envargs$(O):        envargs.c  $(UNZIP_H)
436
435
explode$(O):        explode.c  $(UNZIP_H)
437
 
extract$(O):        extract.c  $(UNZIP_H) crypt.h
438
 
fileio$(O):         fileio.c   $(UNZIP_H) crypt.h ttyio.h ebcdic.h
 
436
extract$(O):        extract.c  $(UNZIP_H) crc32.h crypt.h
 
437
fileio$(O):         fileio.c   $(UNZIP_H) crc32.h crypt.h ttyio.h ebcdic.h
439
438
globals$(O):        globals.c  $(UNZIP_H)
440
439
inflate$(O):        inflate.c  $(UNZIP_H) inflate.h #zlib.h
441
440
list$(O):           list.c     $(UNZIP_H)
442
441
match$(O):          match.c    $(UNZIP_H)
443
 
process$(O):        process.c  $(UNZIP_H)
 
442
process$(O):        process.c  $(UNZIP_H) crc32.h
444
443
timezone$(O):       timezone.c $(UNZIP_H) zip.h timezone.h
445
444
ttyio$(O):          ttyio.c    $(UNZIP_H) zip.h crypt.h ttyio.h
 
445
ubz2err$(O):        ubz2err.c  $(UNZIP_H)
446
446
unreduce$(O):       unreduce.c $(UNZIP_H)
447
447
unshrink$(O):       unshrink.c $(UNZIP_H)
448
448
unzip$(O):          unzip.c    $(UNZIP_H) crypt.h unzvers.h consts.h #zlib.h
455
455
# special rule for adding Amiga internal version number to UnZipSFX
456
456
amiga$(OX):      amiga/amiga.c amiga/filedate.c amiga/stat.c $(UNZIP_H) crypt.h timezone.h
457
457
unzip$(OX):      unzip.c    $(UNZIP_H) crypt.h unzvers.h consts.h
458
 
crctab$(OX):     crctab.c   $(UNZIP_H) zip.h
459
 
crypt$(OX):      crypt.c    $(UNZIP_H) zip.h crypt.h ttyio.h
460
 
extract$(OX):    extract.c  $(UNZIP_H) crypt.h
461
 
fileio$(OX):     fileio.c   $(UNZIP_H) crypt.h ttyio.h ebcdic.h
 
458
crc32$(OX):      crc32.c    $(UNZIP_H) zip.h crc32.h
 
459
crypt$(OX):      crypt.c    $(UNZIP_H) zip.h crypt.h crc32.h ttyio.h
 
460
extract$(OX):    extract.c  $(UNZIP_H) crc32.h crypt.h
 
461
fileio$(OX):     fileio.c   $(UNZIP_H) crc32.h crypt.h ttyio.h ebcdic.h
462
462
globals$(OX):    globals.c  $(UNZIP_H)
463
463
inflate$(OX):    inflate.c  $(UNZIP_H) inflate.h #zlib.h
464
464
match$(OX):      match.c    $(UNZIP_H)
465
 
process$(OX):    process.c  $(UNZIP_H)
 
465
process$(OX):    process.c  $(UNZIP_H) crc32.h
466
466
timezone$(OX):   timezone.c $(UNZIP_H) zip.h timezone.h
467
467
ttyio$(OX):      ttyio.c    $(UNZIP_H) zip.h crypt.h ttyio.h
 
468
ubz2err$(OX):    ubz2err.c  $(UNZIP_H)
468
469
 
469
470
 
470
471
# fUnZip dependencies:
471
472
#
472
 
funzip$(O):      funzip.c   $(UNZIP_H) crypt.h ttyio.h tables.h
473
 
crc32$(OF):      crc32.c    $(UNZIP_H) zip.h
474
 
crypt$(OF):      crypt.c    $(UNZIP_H) zip.h crypt.h ttyio.h
 
473
funzip$(O):      funzip.c   $(UNZIP_H) crc32.h crypt.h ttyio.h
 
474
crc32$(OF):      crc32.c    $(UNZIP_H) zip.h crc32.h
 
475
crypt$(OF):      crypt.c    $(UNZIP_H) zip.h crypt.h crc32.h ttyio.h
475
476
globals$(OF):    globals.c  $(UNZIP_H)
476
477
inflate$(OF):    inflate.c  $(UNZIP_H) inflate.h crypt.h #zlib.h
477
478
ttyio$(OF):      ttyio.c    $(UNZIP_H) zip.h crypt.h ttyio.h