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