Jamfile 595 B

123456789101112131415161718192021222324252627
  1. # FreeType 2 src/cache Jamfile (c) 2001 David Turner
  2. #
  3. SubDir FT2_TOP $(FT2_SRC_DIR) cache ;
  4. # The file <freetype/ftcache.h> contains some macro definitions that are
  5. # later used in #include statements related to the cache sub-system. It
  6. # needs to be parsed through a HDRMACRO rule for macro definitions.
  7. #
  8. HDRMACRO [ FT2_SubDir include ftcache.h ] ;
  9. {
  10. local _sources ;
  11. if $(FT2_MULTI)
  12. {
  13. _sources = ftlru ftcmanag ftccache ftcglyph ftcsbits ftcimage ftccmap ;
  14. }
  15. else
  16. {
  17. _sources = ftcache ;
  18. }
  19. Library $(FT2_LIB) : $(_sources).c ;
  20. }
  21. # end of src/cache Jamfile