summaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2015-06-25 02:15:17 +0200
committerJoel Klinghed <the_jk@yahoo.com>2015-06-29 21:50:50 +0200
commit94a1cff1bd2d0e1ce7b362e067c94193b980202f (patch)
tree9876b562d4dea1c3111594d49372e795ae939a09 /src/Makefile.am
parent98727c1173a5865143b70bd68218b95a030824b1 (diff)
Add page, a simple webpage for going/not going
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index cfb56e4..e615808 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -3,7 +3,7 @@ MAINTAINERCLEANFILES = Makefile.in
AM_CPPFLAGS = @DEFINES@ -DLOCALSTATEDIR='"@localstatedir@/stuff"' \
-DSYSCONFDIR='"@sysconfdir@/stuff"'
-bin_PROGRAMS = event sender
+bin_PROGRAMS = event sender page
noinst_PROGRAMS = test-sender
noinst_LTLIBRARIES = libdb.la libcgi.la libutil.la libsender_client.la \
libjson.la libevent.la
@@ -11,6 +11,9 @@ noinst_LTLIBRARIES = libdb.la libcgi.la libutil.la libsender_client.la \
event_SOURCES = event_main.cc common.hh cgi.hh
event_LDADD = libcgi.la libevent.la
+page_SOURCES = page_main.cc common.hh cgi.hh
+page_LDADD = libcgi.la libevent.la
+
sender_SOURCES = common.hh sender.cc
sender_CPPFLAGS = $(AM_CPPFLAGS) @CURL_CFLAGS@
sender_LDADD = libjson.la libutil.la @CURL_LIBS@