mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
28 lines
789 B
Makefile
28 lines
789 B
Makefile
## Makefile.am -- Process this file with automake to produce Makefile.in
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
EXTRA_DIST = include
|
|
|
|
DEFAULT_INCLUDES = -I./include -I$(top_builddir)/include
|
|
|
|
ulib_la = @ULIBS@ $(top_builddir)/src/ulib/lib@ULIB@.la @ULIB_LIBS@
|
|
|
|
include_includedir = $(includedir)/include
|
|
|
|
SRC = HttpBaAuthorization.cpp HttpBaWwwAuthenticate.cpp HttpCookie.cpp HttpField.cpp HttpHeader.cpp HttpLocation.cpp \
|
|
HttpRequestHeader.cpp HttpResponseHeader.cpp HttpSetCookie.cpp OtpAuthToken.cpp HttpOtpPostLogin.cpp
|
|
## ../src/ulib/internal/portable.cpp
|
|
|
|
if DEBUG
|
|
## AM_CXXFLAGS = -DDEBUG_DEBUG
|
|
endif
|
|
|
|
libhttp_la_SOURCES = $(SRC)
|
|
|
|
## for convenience library
|
|
noinst_LTLIBRARIES = libhttp.la
|
|
|
|
#lib_LTLIBRARIES = libhttp.la
|
|
#libhttp_la_LDFLAGS = $(LT_VERSION) -release $(LT_RELEASE)
|