Makefile.am 927 B

123456789101112131415161718192021222324252627
  1. # This program is free software; you can redistribute it and/or
  2. # modify it under the terms of the GNU General Public License
  3. # as published by the Free Software Foundation; either version 2
  4. # of the License, or (at your option) any later version.
  5. #
  6. # This program is distributed in the hope that it will be useful,
  7. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. # GNU General Public License for more details.
  10. #
  11. # Author: g0tsu
  12. # Email: g0tsu at dnmx.0rg
  13. LDADD = ../src/libhighlight.la
  14. AM_CFLAGS=-I../src/ -g -static
  15. check_PROGRAMS = hl_parser hl_node hl_pp hl_keyword hl_html \
  16. hl_tokenizer
  17. hl_parser_SOURCES = hl_parser.c
  18. hl_node_SOURCES = hl_node.c
  19. hl_pp_SOURCES=hl_pp.c
  20. hl_keyword_SOURCES=hl_keyword.c
  21. hl_html_SOURCES=hl_html.c
  22. hl_tokenizer_SOURCES=hl_tokenizer.c
  23. TESTS = hl_parser hl_node hl_pp hl_keyword hl_html hl_tokenizer