diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2015-06-04 23:39:29 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2015-06-04 23:39:29 +0200 |
| commit | 71ace33728c9b215ca90719a9192aec9a531639e (patch) | |
| tree | 6e8921c572ff06cfaeaf0761cce16237cad4a46a /src/Makefile.am | |
| parent | 7f1b66cdf7f1af6149db016a11214bccf46e98ef (diff) | |
Adding sender
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6b6b797..8ab164c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,25 +3,29 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = @DEFINES@ -DLOCALSTATEDIR='"@localstatedir@/stuff"' \ -DSYSCONFDIR='"@sysconfdir@/stuff"' -bin_PROGRAMS = event -noinst_LTLIBRARIES = libdb.la libcgi.la +bin_PROGRAMS = event sender +noinst_LTLIBRARIES = libdb.la libcgi.la libutil.la event_SOURCES = event.cc event.hh event_main.cc common.hh cgi.hh db.hh \ - fsutils.cc fsutils.hh config.cc config.hh + sender_client.cc sender_client.hh event_LDADD = libdb.la libcgi.la +sender_SOURCES = common.hh sender.cc json.hh json.cc +sender_LDADD = libutil.la + libcgi_la_SOURCES = cgi.hh common.hh cgi.cc \ query_parser.hh query_parser.cc \ header_parser.hh header_parser.cc \ - strutils.hh strutils.cc \ args.hh args.cc \ http.hh http.cc \ multipart_formdata_parser.hh multipart_formdata_parser.cc libcgi_la_CPPFLAGS = $(AM_CPPFLAGS) @FASTCGI_CFLAGS@ -libcgi_la_LIBADD = @FASTCGI_LIBS@ +libcgi_la_LIBADD = @FASTCGI_LIBS@ libutil.la libdb_la_SOURCES = db.hh common.hh db.cc sqlite3_db.hh sqlite3_db.cc libdb_la_CPPFLAGS = $(AM_CPPFLAGS) @SQLITE3_CFLAGS@ libdb_la_LIBADD = @SQLITE3_LIBS@ +libutil_la_SOURCES = common.hh fsutils.cc fsutils.hh config.cc config.hh \ + strutils.hh strutils.cc |
