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 \
|
|
36 |
physfs.dsp \
|
304
|
37 |
test_physfs.dsp
|
298
|
38 |
|
|
39 |
dist-hook:
|
303
|
40 |
mkdir $(distdir)/docs
|
|
41 |
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README
|
|
42 |
echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README
|
|
43 |
echo >> $(distdir)/docs/README
|
298
|
44 |
|