diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2015-05-28 21:14:52 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2015-05-28 21:16:14 +0200 |
| commit | 720295848ea0d909cb39c004cbeaf1055fa7cffc (patch) | |
| tree | 3a4c0332f8145986ddfc1c83e89b9cf8a1491546 /src/Makefile.am | |
| parent | 978bb2523f2eef42eca8dbe35e0ad351a4953aa7 (diff) | |
Start of CGI interface
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 06a92ff..aaab9f9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,7 +2,15 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = @DEFINES@ -noinst_LTLIBRARIES = libdb.la +noinst_LTLIBRARIES = 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 \ + multipart_formdata_parser.hh multipart_formdata_parser.cc +libcgi_la_CPPFLAGS = $(AM_CPPFLAGS) @FASTCGI_CFLAGS@ +libcgi_la_LIBADD = @FASTCGI_LIBS@ libdb_la_SOURCES = db.hh common.hh db.cc sqlite3_db.hh sqlite3_db.cc libdb_la_CPPFLAGS = $(AM_CPPFLAGS) @SQLITE3_CFLAGS@ |
