29 lines
527 B
Makefile
29 lines
527 B
Makefile
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(includedir)
|
|
|
|
lib_LTLIBRARIES = libqsenet.la
|
|
libqsenet_la_SOURCES = \
|
|
httpd.h \
|
|
upxd.h \
|
|
http.c \
|
|
htre.c \
|
|
htrd.c \
|
|
httpd.c \
|
|
httpd-cgi.c \
|
|
httpd-dir.c \
|
|
httpd-file.c \
|
|
httpd-proxy.c \
|
|
httpd-resol.c \
|
|
httpd-std.c \
|
|
httpd-task.c \
|
|
httpd-text.c \
|
|
upxd.c
|
|
|
|
libqsenet_la_LDFLAGS = -version-info 1:0:0 -no-undefined -L../cmn -L$(libdir)
|
|
libqsenet_la_LIBADD = -lqsecmn $(SOCKET_LIBS) $(SENDFILE_LIBS) $(SSL_LIBS)
|
|
|