Makefile.am 564 B

123456789101112131415161718192021222324252627282930313233
  1. lib_LTLIBRARIES = libphysfs.la
  2. SUBDIRS = platform archivers zlib114 . test
  3. libphysfsincludedir = $(includedir)
  4. libphysfsinclude_HEADERS = \
  5. physfs.h
  6. libphysfs_la_SOURCES = \
  7. physfs.c \
  8. physfs_internal.h \
  9. physfs_byteorder.c
  10. if BUILD_ZLIB
  11. ZLIB_LIB = zlib114/libz.la
  12. else
  13. ZLIB_LIB =
  14. endif
  15. libphysfs_la_LDFLAGS = \
  16. -release $(LT_RELEASE) \
  17. -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
  18. libphysfs_la_LIBADD = \
  19. archivers/libarchivers.la \
  20. platform/libplatform.la \
  21. $(ZLIB_LIB)
  22. EXTRA_DIST = \
  23. CREDITS \
  24. LICENSE \
  25. CHANGELOG \
  26. INSTALL \
  27. TODO