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

« back to all changes in this revision

Viewing changes to flexos/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
1
#------------------------------------------------------------------------------
2
 
# Makefile for UnZip 5.5 and later                             Derek Fawcus
3
 
# Version:  MetaWare High C with PAMAKE                        13 Feb 2001
 
2
# Makefile for UnZip 5.53 and later                            Derek Fawcus
 
3
# Version:  MetaWare High C with PAMAKE                        30 Dec 2005
4
4
 
5
5
#
6
6
###########################################################################
120
120
#  The objects to build from
121
121
#
122
122
 
123
 
UNZIP_OBJS =    unzip.obj crc32.obj crctab.obj crypt.obj envargs.obj \
 
123
UNZIP_OBJS =    unzip.obj crc32.obj crypt.obj envargs.obj \
124
124
                explode.obj extract.obj fileio.obj globals.obj inflate.obj \
125
125
                list.obj match.obj process.obj ttyio.obj unreduce.obj \
126
126
                unshrink.obj zipinfo.obj flexos.obj $(ASMOBJS)
133
133
$(HC_LIB)
134
134
<
135
135
 
136
 
UNZIPSFX_OBJS = unzip.obs crc32.obs crctab.obs crypt.obs extract.obs \
 
136
UNZIPSFX_OBJS = unzip.obs crc32.obs crypt.obs extract.obs \
137
137
                fileio.obs globals.obs inflate.obs match.obs process.obs \
138
138
                ttyio.obs flexos.obs $(ASMOBJS)
139
139
 
164
164
unshrink.obj:   unshrink.c $(UNZIP_H)
165
165
unzip.obj:      unzip.c $(UNZIP_H) crypt.h unzvers.h consts.h
166
166
zipinfo.obj:    zipinfo.c $(UNZIP_H)
167
 
process.obj:    process.c $(UNZIP_H)
 
167
process.obj:    process.c $(UNZIP_H) crc32.h
168
168
list.obj:       list.c $(UNZIP_H)
169
169
match.obj:      match.c $(UNZIP_H)
170
 
fileio.obj:     fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
 
170
fileio.obj:     fileio.c $(UNZIP_H) crc32.h crypt.h ttyio.h ebcdic.h
171
171
envargs.obj:    envargs.c $(UNZIP_H)
172
172
explode.obj:    explode.c $(UNZIP_H)
173
 
extract.obj:    extract.c $(UNZIP_H) crypt.h
174
 
crctab.obj:     crctab.c $(UNZIP_H) zip.h
 
173
extract.obj:    extract.c $(UNZIP_H) crc32.h crypt.h
 
174
crc32.obj:      crc32.c $(UNZIP_H) zip.h crc32.h
175
175
 
176
176
flexos.obj:     flexos/flexos.c $(UNZIP_H)
177
 
crc32.obj:      crc32.c $(UNZIP_H) zip.h
178
 
crypt.obj:      crypt.c $(UNZIP_H) crypt.h ttyio.h zip.h
 
177
crc32.obj:      crc32.c $(UNZIP_H) zip.h crc32.h
 
178
crypt.obj:      crypt.c $(UNZIP_H) crc32.h crypt.h ttyio.h zip.h
179
179
globals.obj:    globals.c $(UNZIP_H)
180
180
inflate.obj:    inflate.c inflate.h $(UNZIP_H)
181
181
ttyio.obj:      ttyio.c $(UNZIP_H) crypt.h ttyio.h zip.h
182
182
 
183
 
funzip.obj:     funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
184
 
crc32.obf:      crc32.c $(UNZIP_H) zip.h
 
183
funzip.obj:     funzip.c $(UNZIP_H) crc32.h crypt.h ttyio.h
 
184
crc32.obf:      crc32.c $(UNZIP_H) zip.h crc32.h
185
185
crypt.obf:      crypt.c $(UNZIP_H) crypt.h ttyio.h zip.h
186
186
globals.obf:    globals.c $(UNZIP_H)
187
187
inflate.obf:    inflate.c inflate.h $(UNZIP_H) crypt.h
188
188
ttyio.obf:      ttyio.c $(UNZIP_H) crypt.h ttyio.h zip.h
189
189
 
190
190
flexos.obs:     flexos/flexos.c $(UNZIP_H)
191
 
crc32.obs:      crc32.c $(UNZIP_H) zip.h
192
 
crctab.obs:     crctab.c $(UNZIP_H) zip.h
193
 
extract.obs:    extract.c $(UNZIP_H) crypt.h
194
 
fileio.obs:     fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
 
191
crc32.obs:      crc32.c $(UNZIP_H) zip.h crc32.h
 
192
extract.obs:    extract.c $(UNZIP_H) crc32.h crypt.h
 
193
fileio.obs:     fileio.c $(UNZIP_H) crc32.h crypt.h ttyio.h ebcdic.h
195
194
globals.obs:    globals.c $(UNZIP_H)
196
195
inflate.obs:    inflate.c inflate.h $(UNZIP_H) crypt.h
197
196
match.obs:      match.c $(UNZIP_H)
198
 
process.obs:    process.c $(UNZIP_H)
 
197
process.obs:    process.c $(UNZIP_H) crc32.h
199
198
ttyio.obs:      ttyio.c $(UNZIP_H) crypt.h ttyio.h zip.h
200
199
unzip.obs:      unzip.c $(UNZIP_H) crypt.h unzvers.h consts.h