diff options
author | Adam Tkac <atkac@redhat.com> | 2008-03-20 11:48:41 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-03-20 11:48:41 +0000 |
commit | ae2c6454d953f142efc02da285655b0451d86da0 (patch) | |
tree | a48a2ab700c33f43c87a94c3804ef17b90d263d1 /common/rdr | |
parent | d547e72eba2e44a3201f603fee66bd504db7b854 (diff) | |
download | tigervnc-ae2c6454d953f142efc02da285655b0451d86da0.tar.gz tigervnc-ae2c6454d953f142efc02da285655b0451d86da0.zip |
- use Makefile.am and configure.ac
- removed unwanted files
- internationalization and jpeg library doesn't work yet
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2433 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rdr')
-rw-r--r-- | common/rdr/Makefile.am | 10 | ||||
-rw-r--r-- | common/rdr/Makefile.in | 19 |
2 files changed, 10 insertions, 19 deletions
diff --git a/common/rdr/Makefile.am b/common/rdr/Makefile.am new file mode 100644 index 00000000..0621a02b --- /dev/null +++ b/common/rdr/Makefile.am @@ -0,0 +1,10 @@ +noinst_LTLIBRARIES = librdr.la + +librdr_la_SOURCES = Exception.cxx Exception.h FdInStream.cxx FdInStream.h \ + FdOutStream.cxx FdOutStream.h FixedMemOutStream.h HexInStream.cxx \ + HexInStream.h HexOutStream.cxx HexOutStream.h InStream.cxx InStream.h \ + MemInStream.h MemOutStream.h OutStream.h RandomStream.cxx \ + RandomStream.h SubstitutingInStream.h types.h ZlibInStream.cxx \ + ZlibInStream.h ZlibOutStream.cxx ZlibOutStream.h + +librdr_la_CPPFLAGS = -I$(COMMON_DIR) 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 |