diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2015-06-03 00:09:09 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2015-06-03 00:23:19 +0200 |
| commit | 41c45d4a4d6f8bea9b45d76ddef5d8bac71cfc5a (patch) | |
| tree | 70f5e4a20a7659529a48174a50ff24da92a01e44 /src/Makefile.am | |
| parent | 823dc403a9b56e00be4982d0082d30b8df5e53d6 (diff) | |
A start for an event handler
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 54ff40d..45bca7d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,17 +2,18 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = @DEFINES@ -bin_PROGRAMS = signup +bin_PROGRAMS = event noinst_LTLIBRARIES = libdb.la libcgi.la -signup_SOURCES = signup.cc common.hh cgi.hh db.hh -signup_LDADD = libdb.la libcgi.la +event_SOURCES = event.cc event.hh event_main.cc common.hh cgi.hh db.hh +event_LDADD = libdb.la libcgi.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@ |
