26 lines
527 B
Makefile
26 lines
527 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = ..
|
|
|
|
noinst_LIBRARIES = libio.a
|
|
libio_a_SOURCES = \
|
|
CBufferedInputStream.cpp \
|
|
CBufferedOutputStream.cpp \
|
|
CInputStreamFilter.cpp \
|
|
COutputStreamFilter.cpp \
|
|
CStreamBuffer.cpp \
|
|
XIO.cpp \
|
|
CBufferedInputStream.h \
|
|
CBufferedOutputStream.h \
|
|
CInputStreamFilter.h \
|
|
COutputStreamFilter.h \
|
|
CStreamBuffer.h \
|
|
IInputStream.h \
|
|
IOutputStream.h \
|
|
XIO.h \
|
|
$(NULL)
|
|
INCLUDES = \
|
|
-I$(DEPTH)/base \
|
|
-I$(DEPTH)/mt \
|
|
$(NULL)
|