author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 24 May 2002 03:39:05 +0000 | |
changeset 231 | e4f81b0f1c93 |
parent 213 | 9e3f734586ac |
child 263 | 4deea02e4822 |
permissions | -rw-r--r-- |
213 | 1 |
lib_LTLIBRARIES = libphysfs.la |
2 |
||
231
e4f81b0f1c93
Corrected to fix "make dist".
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
3 |
SUBDIRS = platform archivers zlib114 . test extras |
213 | 4 |
|
5 |
libphysfsincludedir = $(includedir) |
|
6 |
libphysfsinclude_HEADERS = \ |
|
7 |
physfs.h |
|
8 |
||
9 |
libphysfs_la_SOURCES = \ |
|
10 |
physfs.c \ |
|
11 |
physfs_internal.h \ |
|
12 |
physfs_byteorder.c |
|
13 |
||
14 |
if BUILD_ZLIB |
|
15 |
ZLIB_LIB = zlib114/libz.la |
|
16 |
else |
|
17 |
ZLIB_LIB = |
|
18 |
endif |
|
19 |
||
20 |
libphysfs_la_LDFLAGS = \ |
|
21 |
-release $(LT_RELEASE) \ |
|
22 |
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
|
23 |
libphysfs_la_LIBADD = \ |
|
24 |
archivers/libarchivers.la \ |
|
25 |
platform/libplatform.la \ |
|
26 |
$(ZLIB_LIB) |
|
27 |
||
28 |
EXTRA_DIST = \ |
|
29 |
CREDITS \ |
|
30 |
LICENSE \ |
|
31 |
CHANGELOG \ |
|
32 |
INSTALL \ |
|
33 |
TODO |