qse/qse/lib/http/Makefile.am

29 lines
531 B
Makefile
Raw Normal View History

2011-07-06 09:45:00 +00:00
AUTOMAKE_OPTIONS = nostdinc
AM_CPPFLAGS = \
-I$(top_builddir)/include \
-I$(top_srcdir)/include \
-I$(includedir)
2013-02-18 13:45:50 +00:00
lib_LTLIBRARIES = libqsehttp.la
libqsehttp_la_SOURCES = \
2012-06-20 15:12:18 +00:00
httpd.h \
upxd.h \
2011-07-06 09:45:00 +00:00
http.c \
htre.c \
2011-07-08 10:16:19 +00:00
htrd.c \
httpd.c \
2012-05-31 10:18:50 +00:00
httpd-cgi.c \
2012-09-11 16:19:52 +00:00
httpd-dir.c \
httpd-file.c \
2012-05-31 10:18:50 +00:00
httpd-proxy.c \
httpd-resol.c \
httpd-std.c \
2012-06-14 08:28:16 +00:00
httpd-task.c \
httpd-text.c \
2012-06-14 08:28:16 +00:00
upxd.c
2011-07-06 09:45:00 +00:00
2013-02-18 13:45:50 +00:00
libqsehttp_la_LDFLAGS = -version-info 1:0:0 -no-undefined -L../cmn -L$(libdir)
libqsehttp_la_LIBADD = -lqsecmn $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS)
2012-12-04 16:44:59 +00:00