Makefile.am.oldautomake 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. lib_LTLIBRARIES = libphysfs.la
  2. SUBDIRS = platform archivers zlib114 . test extras
  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 \
  28. Doxyfile \
  29. CWProjects.sit \
  30. physfs.spec.in \
  31. physfs.spec \
  32. physfs.dsp \
  33. test_physfs.dsp \
  34. makeos2.cmd
  35. dist-hook:
  36. mkdir $(distdir)/docs
  37. echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README
  38. echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README
  39. echo >> $(distdir)/docs/README