diff options
Diffstat (limited to 'c_implementation/Makefile.am')
-rw-r--r-- | c_implementation/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/c_implementation/Makefile.am b/c_implementation/Makefile.am new file mode 100644 index 0000000..87089cb --- /dev/null +++ b/c_implementation/Makefile.am @@ -0,0 +1,22 @@ +ACLOCAL_AMFLAGS = -I m4 +AM_CPPFLAGS = -I$(top_srcdir)/include + +lib_LTLIBRARIES = libaklog.la libaksettings.la +libaklog_la_SOURCES = $(top_srcdir)/src/aklog.c +libaksettings_la_SOURCES = $(top_srcdir)/src/aksettings.c +include_HEADERS = include/libaklog.h include/libaksettings.h + +bin_PROGRAMS = ak +ak_LDADD = libaklog.la +ak_SOURCES = src/ak.c + +check_PROGRAMS = test_aklog +test_aklog_SOURCES = ./tests/test_aklog.c +test_aklog_LDADD = libaklog.la + +tests_test_main_CPPFLAGS = -I$(top_srcdir)/include + +TESTS = $(check_PROGRAMS) + +CLEANFILES = $(TESTS) + |