diff options
author | Adam Tkac <atkac@redhat.com> | 2008-04-14 14:49:52 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-04-14 14:49:52 +0000 |
commit | 47e7ee8e73c77202d2b07998cfb9efbe496ae849 (patch) | |
tree | 23fe0ff941a577a4a817a250c9af99e70aa0c63f /common/rdr | |
parent | 4cb954c36761f041eba50f374b5d2f4b3510757f (diff) | |
download | tigervnc-47e7ee8e73c77202d2b07998cfb9efbe496ae849.tar.gz tigervnc-47e7ee8e73c77202d2b07998cfb9efbe496ae849.zip |
- generate Makefile.in from Makefile.am template
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2466 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rdr')
-rw-r--r-- | common/rdr/Makefile.am | 7 | ||||
-rw-r--r-- | common/rdr/Makefile.in | 19 |
2 files changed, 7 insertions, 19 deletions
diff --git a/common/rdr/Makefile.am b/common/rdr/Makefile.am new file mode 100644 index 00000000..0e888963 --- /dev/null +++ b/common/rdr/Makefile.am @@ -0,0 +1,7 @@ +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 + +librdr_la_CPPFLAGS = -I$(top_srcdir) @ZLIB_INCLUDE@ diff --git a/common/rdr/Makefile.in b/common/rdr/Makefile.in deleted file mode 100644 index 09fa5544..00000000 --- a/common/rdr/Makefile.in +++ /dev/null @@ -1,19 +0,0 @@ - -SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \ - RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx \ - HexInStream.cxx HexOutStream.cxx - -OBJS = $(SRCS:.cxx=.o) - -DIR_CPPFLAGS = -I$(top_srcdir) @ZLIB_INCLUDE@ - -library = librdr.a - -all:: $(library) - -$(library): $(OBJS) - rm -f $(library) - $(AR) $(library) $(OBJS) - $(RANLIB) $(library) - -# followed by boilerplate.mk |