physfs/Makefile.am

43 lines
684 B
Makefile
Raw Normal View History

2002-05-10 11:16:38 +02:00
lib_LTLIBRARIES = libphysfs.la
2002-05-24 05:39:05 +02:00
SUBDIRS = platform archivers zlib114 . test extras
2002-05-10 11:16:38 +02:00
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 \
2002-06-07 13:59:27 +02:00
TODO \
Doxyfile \
CWProjects.sit \
physfs.dsp \
test_physfs.dsp \
2002-06-07 13:59:27 +02:00
docs
dist-hook:
2002-06-08 10:38:11 +02:00
rm -rf $(distdir)/docs/*
2002-06-07 13:59:27 +02:00