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