Makefile.am 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #===========================================================================
  2. #
  3. # Makefile.am
  4. #
  5. #===========================================================================
  6. # $Id: Makefile.am,v 1.17 2003/03/17 12:48:16 raitner Exp $
  7. #---------------------------------------------------------------------------
  8. # General Settings
  9. #---------------------------------------------------------------------------
  10. SUBDIRS = doc src include tests
  11. AUTOMAKE_OPTIONS = dist-zip dist-bzip2 dist-zip
  12. EXTRA_DIST = \
  13. GTL.spec \
  14. README.Irix \
  15. README.win \
  16. src/GTL.dsw \
  17. src/GTL_dynamic.dsp \
  18. src/GTL_static.dsp \
  19. src/GTL.sln \
  20. src/GTL_dynamic.vcproj \
  21. src/GTL_static.vcproj
  22. #---------------------------------------------------------------------------
  23. # Goal for building documentation
  24. #---------------------------------------------------------------------------
  25. .PHONY: doc runtests
  26. runtests:
  27. cd tests; $(MAKE) runtests
  28. docs:
  29. cd doc; $(MAKE) doc
  30. #---------------------------------------------------------------------------
  31. # end of file
  32. #---------------------------------------------------------------------------