17 lines
312 B
Makefile
17 lines
312 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = ../..
|
|
|
|
noinst_LIBRARIES = libhttp.a
|
|
libhttp_a_SOURCES = \
|
|
CHTTPProtocol.cpp \
|
|
XHTTP.cpp \
|
|
CHTTPProtocol.h \
|
|
XHTTP.h \
|
|
$(NULL)
|
|
INCLUDES = \
|
|
-I$(DEPTH)/lib/base \
|
|
-I$(DEPTH)/lib/mt \
|
|
-I$(DEPTH)/lib/io \
|
|
$(NULL)
|