annotate src/Makefile.am @ 4:37eace15ef87
allow hourly/daily/weekly triggers for output generation, append to temp wflogs input files so daemon restart won't drop as much data
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Fri, 17 May 2013 12:03:21 -0700 |
parents |
0aa1171aebd2 |
children |
|
rev |
line source |
0
|
1 sbin_PROGRAMS = wflogs-daemon
|
|
2 wflogs_daemon_SOURCES = wflogs-daemon.cpp tokenizer.cpp tokenizer.h \
|
|
3 includes.h wflogs-config.cpp wflogs-config.h wflogs-daemon.h daemon.h
|
|
4 EXTRA_DIST = daemon.c
|
|
5
|
|
6 # set the include path found by configure
|
|
7 INCLUDES= $(all_includes)
|
|
8
|
|
9 # the library search path.
|
|
10 wflogs_daemon_LDFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
11 wflogs_daemon_LDADD = $(all_libraries) $(REGEXLIB)
|
|
12
|
|
13 # default compile flags
|
|
14 wflogs_daemon_CXXFLAGS = $(PTHREAD_CFLAGS)
|
|
15
|