bug fix : prevent issue CID 13716
[framework/system/dlog.git] / Makefile.am
1 AM_CFLAGS = -I$(srcdir)/include
2
3 dlog_includedir = $(includedir)/dlog
4 dlog_include_HEADERS = \
5         include/dlog.h
6
7 lib_LTLIBRARIES = libdlog.la
8
9 libdlog_la_SOURCES =  \
10         log.c \
11         include/dlog.h
12
13 libdlog_la_LIBADD = -lpthread $(systemd_journal_LIBS)
14
15 bin_PROGRAMS= dlogutil
16
17 dlogutil_SOURCES = \
18         logutil.c \
19         logprint.c \
20         include/logger.h \
21         include/logprint.h
22
23 # conf file
24 pkgconfigdir = $(libdir)/pkgconfig
25 pkgconfig_DATA = dlog.pc
26
27 bootscriptdir = /etc/rc.d/init.d
28 bootscript_SCRIPTS = dlog.sh
29
30