qse/qse/lib/http/Makefile.am

39 lines
989 B
Makefile
Raw Normal View History

2011-07-06 09:45:00 +00:00
AUTOMAKE_OPTIONS = nostdinc
2014-09-05 15:52:19 +00:00
CPPFLAGS_ALL_COMMON = \
2011-07-06 09:45:00 +00:00
-I$(top_builddir)/include \
-I$(top_srcdir)/include
2011-07-06 09:45:00 +00:00
2014-09-05 15:52:19 +00:00
if WIN32
# you must adjust the value of DEFAULT_MODPOSTFIX according
# to the first number in -version-info below
CPPFLAGS_HTTPD_MOD = -DQSE_HTTPD_DEFAULT_MODPREFIX=\"libqsehttpd-\" -DQSE_HTTPD_DEFAULT_MODPOSTFIX=\"-1\"
else
CPPFLAGS_HTTPD_MOD = -DQSE_HTTPD_DEFAULT_MODPREFIX=\"$(libdir)/libqsehttpd-\" -DQSE_HTTPD_DEFAULT_MODPOSTFIX=\"\"
endif
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-std.c \
httpd-std-dns.h \
httpd-std-mod.h \
httpd-std-urs.h \
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
2014-09-05 15:52:19 +00:00
libqsehttp_la_CPPFLAGS = $(CPPFLAGS_ALL_COMMON) $(CPPFLAGS_HTTPD_MOD) $(LTDLINCL)
libqsehttp_la_LDFLAGS = -L../cmn -version-info 1:0:0 -no-undefined
libqsehttp_la_LIBADD = -lqsecmn $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS) $(LIBLTDL)
2012-12-04 16:44:59 +00:00