From 9d484725cf9874ff3f34c61af5f57f6b92e05c00 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Mon, 4 May 2015 05:40:53 -0300 Subject: started implementint a markdown-like syntax for content --- Makefile.am | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'Makefile.am') 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) -- cgit v1.2.3-18-g5258