36 lines
710 B
Makefile
36 lines
710 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
NULL =
|
|
DEPTH = ../..
|
|
VDEPTH = ./$(VPATH)/$(DEPTH)
|
|
|
|
EXTRA_DIST = \
|
|
io.dsp \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in \
|
|
$(NULL)
|
|
|
|
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 \
|
|
IStreamFilterFactory.h \
|
|
XIO.h \
|
|
$(NULL)
|
|
INCLUDES = \
|
|
-I$(VDEPTH)/lib/base \
|
|
-I$(VDEPTH)/lib/mt \
|
|
$(NULL)
|