author | Ryan C. Gordon <icculus@icculus.org> |
Thu, 08 Jan 2004 05:53:28 +0000 | |
changeset 625 | 60b5f566a258 |
parent 609 | 3a91332776e0 |
child 631 | 17fdeeaf7b51 |
child 712 | 0fc42c6ecdc5 |
permissions | -rw-r--r-- |
295 | 1 |
noinst_LTLIBRARIES = libarchivers.la |
2 |
||
3 |
if BUILD_ZLIB |
|
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
609
diff
changeset
|
4 |
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/zlib121 |
295 | 5 |
else |
6 |
INCLUDES = -I$(top_srcdir) |
|
7 |
endif |
|
8 |
||
9 |
libarchivers_la_SOURCES = \ |
|
10 |
dir.c \ |
|
11 |
grp.c \ |
|
609
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
553
diff
changeset
|
12 |
wad.c \ |
553
4338d9c0bbcd
Descent I/II HOG and MVL archive support (thanks, Bradley Bell!).
Ryan C. Gordon <icculus@icculus.org>
parents:
453
diff
changeset
|
13 |
hog.c \ |
4338d9c0bbcd
Descent I/II HOG and MVL archive support (thanks, Bradley Bell!).
Ryan C. Gordon <icculus@icculus.org>
parents:
453
diff
changeset
|
14 |
mvl.c \ |
453
108de3bb1b6b
Added qpak.c to build systems.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
15 |
zip.c \ |
108de3bb1b6b
Added qpak.c to build systems.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
16 |
qpak.c |
295 | 17 |