author | Ryan C. Gordon <icculus@icculus.org> |
Thu, 18 Jul 2002 05:51:25 +0000 | |
changeset 350 | ec1e75681b4b |
parent 304 | ff219de447fc |
child 409 | 3b9db2a124e4 |
permissions | -rw-r--r-- |
298 | 1 |
lib_LTLIBRARIES = libphysfs.la |
2 |
||
3 |
SUBDIRS = platform archivers zlib114 . test extras |
|
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 \ |
|
34 |
Doxyfile \ |
|
35 |
CWProjects.sit \ |
|
350
ec1e75681b4b
Added physfs.spec to distribution.
Ryan C. Gordon <icculus@icculus.org>
parents:
304
diff
changeset
|
36 |
physfs.spec \ |
298 | 37 |
physfs.dsp \ |
304 | 38 |
test_physfs.dsp |
298 | 39 |
|
40 |
dist-hook: |
|
303 | 41 |
mkdir $(distdir)/docs |
42 |
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README |
|
43 |
echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README |
|
44 |
echo >> $(distdir)/docs/README |
|
298 | 45 |