2002-06-28 07:37:53 +02:00
|
|
|
lib_LTLIBRARIES = libphysfs.la
|
|
|
|
|
|
|
|
SUBDIRS = platform archivers zlib114 . test extras
|
|
|
|
|
|
|
|
libphysfsincludedir = $(includedir)
|
|
|
|
libphysfsinclude_HEADERS = \
|
|
|
|
physfs.h
|
|
|
|
|
|
|
|
libphysfs_la_SOURCES = \
|
|
|
|
physfs.c \
|
|
|
|
physfs_internal.h \
|
|
|
|
physfs_byteorder.c
|
|
|
|
|
|
|
|
if BUILD_ZLIB
|
|
|
|
ZLIB_LIB = zlib114/libz.la
|
|
|
|
else
|
|
|
|
ZLIB_LIB =
|
|
|
|
endif
|
|
|
|
|
|
|
|
libphysfs_la_LDFLAGS = \
|
|
|
|
-release $(LT_RELEASE) \
|
|
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
libphysfs_la_LIBADD = \
|
|
|
|
archivers/libarchivers.la \
|
|
|
|
platform/libplatform.la \
|
|
|
|
$(ZLIB_LIB)
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
CREDITS \
|
|
|
|
LICENSE \
|
|
|
|
CHANGELOG \
|
|
|
|
INSTALL \
|
|
|
|
TODO \
|
|
|
|
Doxyfile \
|
|
|
|
CWProjects.sit \
|
2002-07-18 07:51:25 +02:00
|
|
|
physfs.spec \
|
2002-06-28 07:37:53 +02:00
|
|
|
physfs.dsp \
|
2002-06-28 08:07:39 +02:00
|
|
|
test_physfs.dsp
|
2002-06-28 07:37:53 +02:00
|
|
|
|
|
|
|
dist-hook:
|
2002-06-28 08:04:25 +02:00
|
|
|
mkdir $(distdir)/docs
|
|
|
|
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README
|
|
|
|
echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README
|
|
|
|
echo >> $(distdir)/docs/README
|
2002-06-28 07:37:53 +02:00
|
|
|
|