blob: 9edf28421bd4e811e77bf7057349e83765ed7a9a [file] [log] [blame]
Constantin Kaplinsky47ed8d32004-10-08 09:43:57 +00001
2SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \
3 NullOutStream.cxx RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx \
4 HexInStream.cxx HexOutStream.cxx
5
6OBJS = $(SRCS:.cxx=.o)
7
8DIR_CPPFLAGS = -I$(top_srcdir) @ZLIB_INCLUDE@
9
10library = librdr.a
11
12all:: $(library)
13
14$(library): $(OBJS)
15 rm -f $(library)
16 $(AR) $(library) $(OBJS)
17 $(RANLIB) $(library)
18
19# followed by boilerplate.mk