Constantin Kaplinsky | a2adc8d | 2006-05-25 05:01:55 +0000 | [diff] [blame] | 1 | |
2 | SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \ | ||||
3 | RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx \ | ||||
4 | HexInStream.cxx HexOutStream.cxx | ||||
5 | |||||
6 | OBJS = $(SRCS:.cxx=.o) | ||||
7 | |||||
8 | DIR_CPPFLAGS = -I$(top_srcdir) @ZLIB_INCLUDE@ | ||||
9 | |||||
10 | library = librdr.a | ||||
11 | |||||
12 | all:: $(library) | ||||
13 | |||||
14 | $(library): $(OBJS) | ||||
15 | rm -f $(library) | ||||
16 | $(AR) $(library) $(OBJS) | ||||
17 | $(RANLIB) $(library) | ||||
18 | |||||
19 | # followed by boilerplate.mk |