diff options
author | Adam Tkac <atkac@redhat.com> | 2008-06-18 15:29:19 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-06-18 15:29:19 +0000 |
commit | 2bcfb6d2c7a15189feb7745553f71a3352838c45 (patch) | |
tree | e501dbc05a0c3745179d0e432841250ae499612e /common/rdr | |
parent | defdf85be2a94fbb132e2a045e33caa55da1e06b (diff) | |
download | tigervnc-2bcfb6d2c7a15189feb7745553f71a3352838c45.tar.gz tigervnc-2bcfb6d2c7a15189feb7745553f71a3352838c45.zip |
Add headers to Makefile.am-s to fix "make dist" command in common/* subtree
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2591 3789f03b-4d11-0410-bbf8-ca57d06f2519
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@ |