author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 19 Dec 2003 01:49:12 +0000 | |
changeset 612 | 03b07cbd1bc7 |
parent 602 | 691c1eadb8b7 |
child 613 | fe8897da3695 |
permissions | -rw-r--r-- |
298 | 1 |
lib_LTLIBRARIES = libphysfs.la |
2 |
||
602
691c1eadb8b7
Upgraded internal zlib to 1.2.1 (thanks, Adam!)
Ryan C. Gordon <icculus@icculus.org>
parents:
489
diff
changeset
|
3 |
SUBDIRS = platform archivers zlib121 . test extras |
298 | 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 |
|
602
691c1eadb8b7
Upgraded internal zlib to 1.2.1 (thanks, Adam!)
Ryan C. Gordon <icculus@icculus.org>
parents:
489
diff
changeset
|
15 |
ZLIB_LIB = zlib121/libz.la |
298 | 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 \ |
|
34 |
Doxyfile \ |
|
35 |
CWProjects.sit \ |
|
489
a4a2b6a44a96
Added RPM spec.in version to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
409
diff
changeset
|
36 |
physfs.spec.in \ |
350
ec1e75681b4b
Added physfs.spec to distribution.
Ryan C. Gordon <icculus@icculus.org>
parents:
304
diff
changeset
|
37 |
physfs.spec \ |
298 | 38 |
physfs.dsp \ |
409
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
350
diff
changeset
|
39 |
test_physfs.dsp \ |
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
350
diff
changeset
|
40 |
makeos2.cmd |
298 | 41 |
|
42 |
dist-hook: |
|
303 | 43 |
mkdir $(distdir)/docs |
44 |
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README |
|
45 |
echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README |
|
46 |
echo >> $(distdir)/docs/README |
|
298 | 47 |