diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-04 05:40:53 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-04 05:40:53 -0300 |
commit | 9d484725cf9874ff3f34c61af5f57f6b92e05c00 (patch) | |
tree | b3c5b2ca63d108157ac69fe18b0ecabacf93920b /Makefile.am | |
parent | edb7d515d6f3c41196c1dcb36d719baad1a85bc9 (diff) | |
download | blogc-9d484725cf9874ff3f34c61af5f57f6b92e05c00.tar.gz blogc-9d484725cf9874ff3f34c61af5f57f6b92e05c00.tar.bz2 blogc-9d484725cf9874ff3f34c61af5f57f6b92e05c00.zip |
started implementint a markdown-like syntax for content
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 0f5c5e8..4537fcb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,6 +19,7 @@ CLEANFILES = \ $(NULL) noinst_HEADERS = \ + src/content-parser.h \ src/error.h \ src/loader.h \ src/renderer.h \ @@ -43,6 +44,7 @@ check_PROGRAMS = \ libblogc_la_SOURCES = \ + src/content-parser.c \ src/error.c \ src/loader.c \ src/renderer.c \ @@ -82,6 +84,7 @@ blogc_LDADD = \ if USE_CMOCKA check_PROGRAMS += \ + tests/check_content_parser \ tests/check_error \ tests/check_loader \ tests/check_renderer \ @@ -124,6 +127,23 @@ tests_check_loader_LDADD = \ libblogc.la \ $(NULL) +tests_check_content_parser_SOURCES = \ + tests/check_content_parser.c \ + $(NULL) + +tests_check_content_parser_CFLAGS = \ + $(CMOCKA_CFLAGS) \ + $(NULL) + +tests_check_content_parser_LDFLAGS = \ + -no-install \ + $(NULL) + +tests_check_content_parser_LDADD = \ + $(CMOCKA_LIBS) \ + libblogc.la \ + $(NULL) + tests_check_renderer_SOURCES = \ tests/check_renderer.c \ $(NULL) |