~ubuntu-branches/ubuntu/quantal/unzip/quantal

« back to all changes in this revision

Viewing changes to human68k/Makefile

  • 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
 
# Makefile for UnZip 5.50 and later:  Human68k with gcc        NIIMI Satoshi
 
1
# Makefile for UnZip 5.53 and later:  Human68k with gcc        NIIMI Satoshi
2
2
#
3
3
# The original Makefile maybe works fine, but X680x0 is too slow
4
4
# to process it.  So I split out needed part.
5
5
#
6
 
# Last revised:  27 Feb 01
 
6
# Last revised:  25 Dec 06
7
7
#
8
8
# 1999/09/23: Modified by Shimazaki Ryo.
9
9
 
29
29
FC = -DFUNZIP
30
30
 
31
31
# object files
32
 
OBJS = unzip.o crc_68.o crctab.o crypt.o envargs.o explode.o extract.o \
 
32
OBJS = unzip.o crc32.o crc_68.o crypt.o envargs.o explode.o extract.o \
33
33
        fileio.o globals.o inflate.o flate.o list.o match.o process.o \
34
 
        ttyio.o unreduce.o unshrink.o zipinfo.o human68k.o
35
 
OBJX = unzipsfx.o crc_68.o crctab_.o crypt_.o extract_.o fileio_.o globals_.o \
36
 
        inflate_.o flate_.o match_.o process_.o ttyio_.o human68k_.o
37
 
OBJF = funzip.o crc_68.o cryptf.o globalsf.o inflatef.o flatef.o ttyiof.o
 
34
        ttyio.o ubz2err.o unreduce.o unshrink.o zipinfo.o human68k.o
 
35
OBJX = unzipsfx.o crc32_.o crc_68.o crypt_.o extract_.o fileio_.o globals_.o \
 
36
        inflate_.o flate_.o match_.o process_.o ttyio_.o ubz2err_.o human68k_.o
 
37
OBJF = funzip.o crc32f.o crc_68.o cryptf.o globalsf.o inflatef.o flatef.o \
 
38
        ttyiof.o
38
39
 
39
40
UNZIP_H = unzip.h unzpriv.h globals.h
40
41
 
66
67
funzip.x: $(OBJF)
67
68
        $(CC) $(LDFLAGS) -o $@ $(OBJF) $(LIBS)
68
69
 
69
 
#crc32.o:       crc32.c $(UNZIP_H) zip.h
70
 
crctab.o:       crctab.c $(UNZIP_H) zip.h
 
70
crc32.o:        crc32.c $(UNZIP_H) zip.h crc32.h
71
71
crypt.o:        crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
72
72
envargs.o:      envargs.c $(UNZIP_H)
73
73
explode.o:      explode.c $(UNZIP_H)
74
 
extract.o:      extract.c $(UNZIP_H) crypt.h
75
 
fileio.o:       fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
76
 
funzip.o:       funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
 
74
extract.o:      extract.c $(UNZIP_H) crc32.h crypt.h
 
75
fileio.o:       fileio.c $(UNZIP_H) crc32.h crypt.h ttyio.h ebcdic.h
 
76
funzip.o:       funzip.c $(UNZIP_H) crc32.h crypt.h ttyio.hh
77
77
globals.o:      globals.c $(UNZIP_H)
78
78
inflate.o:      inflate.c inflate.h $(UNZIP_H)
79
79
list.o:         list.c $(UNZIP_H)
80
80
match.o:        match.c $(UNZIP_H)
81
 
process.o:      process.c $(UNZIP_H)
 
81
process.o:      process.c $(UNZIP_H) crc32.h
82
82
ttyio.o:        ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
 
83
ubz2err.o:      ubz2err.c $(UNZIP_H)
83
84
unreduce.o:     unreduce.c $(UNZIP_H)
84
85
unshrink.o:     unshrink.c $(UNZIP_H)
85
86
unzip.o:        unzip.c $(UNZIP_H) crypt.h unzvers.h consts.h
86
87
zipinfo.o:      zipinfo.c $(UNZIP_H)
87
88
 
88
 
crctab_.o:      crctab.c $(UNZIP_H) zip.h                       # unzipsfx
89
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
90
 
 
91
 
crypt_.o:       crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h        # unzipsfx
92
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
93
 
 
94
 
extract_.o:     extract.c $(UNZIP_H) crypt.h                    # unzipsfx
95
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
96
 
 
97
 
fileio_.o:      fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h    # unzipsfx
98
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
99
 
 
100
 
globals_.o:     globals.c $(UNZIP_H)                            # unzipsfx
101
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
102
 
 
103
 
inflate_.o:     inflate.c inflate.h $(UNZIP_H) crypt.h          # unzipsfx
104
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
105
 
 
106
 
process_.o:     process.c $(UNZIP_H)                            # unzipsfx
107
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
108
 
 
109
 
match_.o:       match.c $(UNZIP_H)                              # unzipsfx
110
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
111
 
 
112
 
ttyio_.o:       ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h        # unzipsfx
113
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
114
 
 
115
 
unzipsfx.o:     unzip.c $(UNZIP_H) crypt.h unzvers.h consts.h   # unzipsfx
116
 
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
117
 
 
118
 
 
119
 
cryptf.o:       crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h        # funzip
120
 
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
121
 
 
122
 
globalsf.o:     globals.c $(UNZIP_H)                            # funzip
123
 
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
124
 
 
125
 
inflatef.o:     inflate.c inflate.h $(UNZIP_H) crypt.h          # funzip
126
 
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
127
 
 
128
 
ttyiof.o:       ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h        # funzip
 
89
 
 
90
# unzipsfx
 
91
crc32_.o:       crc32.c $(UNZIP_H) zip.h crc32.h
 
92
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
93
 
 
94
crypt_.o:       crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
 
95
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
96
 
 
97
extract_.o:     extract.c $(UNZIP_H) crc32.h crypt.h
 
98
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
99
 
 
100
fileio_.o:      fileio.c $(UNZIP_H) crc32.h crypt.h ttyio.h ebcdic.h
 
101
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
102
 
 
103
globals_.o:     globals.c $(UNZIP_H)
 
104
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
105
 
 
106
inflate_.o:     inflate.c inflate.h $(UNZIP_H) crypt.h
 
107
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
108
 
 
109
match_.o:       match.c $(UNZIP_H)
 
110
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
111
 
 
112
process_.o:     process.c $(UNZIP_H) crc32.h
 
113
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
114
 
 
115
ttyio_.o:       ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
 
116
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
117
 
 
118
ubz2err_.o:     ubz2err.c $(UNZIP_H)
 
119
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
120
 
 
121
unzipsfx.o:     unzip.c $(UNZIP_H) crypt.h unzvers.h consts.h
 
122
        $(CC) $(CFLAGS) $(XC) -c $< -o $@
 
123
 
 
124
 
 
125
# funzip
 
126
crc32f.o:       crc32.c $(UNZIP_H) zip.h crc32.h
 
127
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
 
128
 
 
129
cryptf.o:       crypt.c $(UNZIP_H) zip.h crypt.h crc32.h ttyio.h
 
130
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
 
131
 
 
132
globalsf.o:     globals.c $(UNZIP_H)
 
133
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
 
134
 
 
135
inflatef.o:     inflate.c inflate.h $(UNZIP_H) crypt.h
 
136
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
 
137
 
 
138
ttyiof.o:       ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
129
139
        $(CC) $(CFLAGS) $(FC) -c $< -o $@
130
140
 
131
141