blob: 09fa5544aef4e2d8d7b3f8236386d99641986c0b [file] [log] [blame]
Constantin Kaplinskya2adc8d2006-05-25 05:01:55 +00001
2SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \
3 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