diff options
Diffstat (limited to 'common/rdr')
-rw-r--r-- | common/rdr/Makefile.am | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/common/rdr/Makefile.am b/common/rdr/Makefile.am index b9e7eb75..b1c0be51 100644 --- a/common/rdr/Makefile.am +++ b/common/rdr/Makefile.am @@ -1,8 +1,13 @@ noinst_LTLIBRARIES = librdr.la -librdr_la_SOURCES = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \ - RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx HexInStream.cxx \ - HexOutStream.cxx +HDRS = Exception.h FdInStream.h FdOutStream.h FixedMemOutStream.h \ + HexInStream.h HexOutStream.h InStream.h MemInStream.h \ + MemOutStream.h msvcwarning.h OutStream.h RandomStream.h \ + SubstitutingInStream.h types.h ZlibInStream.h ZlibOutStream.h + +librdr_la_SOURCES = $(HDRS) Exception.cxx FdInStream.cxx FdOutStream.cxx \ + InStream.cxx RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx \ + HexInStream.cxx HexOutStream.cxx librdr_la_CPPFLAGS = -I$(top_srcdir) @ZLIB_INCLUDE@ |