diff options
Diffstat (limited to 'rdr/Makefile.in')
-rw-r--r-- | rdr/Makefile.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/rdr/Makefile.in b/rdr/Makefile.in new file mode 100644 index 00000000..9edf2842 --- /dev/null +++ b/rdr/Makefile.in @@ -0,0 +1,19 @@ + +SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \ + NullOutStream.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 |