author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 15 Dec 2003 04:01:18 +0000 | |
changeset 609 | 3a91332776e0 |
parent 553 | 4338d9c0bbcd |
child 625 | 60b5f566a258 |
permissions | -rw-r--r-- |
295 | 1 |
noinst_LTLIBRARIES = libarchivers.la |
2 |
||
3 |
if BUILD_ZLIB |
|
4 |
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/zlib114 |
|
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 |