Mercurial > routeflapper
annotate src/Makefile.am @ 8:69a5dcf953df default tip
routeflapper runs as root to read the log files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 04 Sep 2014 08:57:50 -0700 |
parents | ccf40fd3b050 |
children |
rev | line source |
---|---|
0 | 1 sbin_PROGRAMS = routeflapper |
2 routeflapper_SOURCES = routeflapper.cpp tokenizer.cpp tokenizer.h \ | |
3 includes.h routeconfig.cpp routeconfig.h routeflapper.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 routeflapper_LDFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) | |
5
ccf40fd3b050
autoconf cleanup from libpst changes
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
11 routeflapper_LDADD = $(all_libraries) $(REGEXLIB) |
0 | 12 |
13 # default compile flags | |
14 routeflapper_CXXFLAGS = $(PTHREAD_CFLAGS) | |
15 |