Constantin Kaplinsky | 47ed8d3 | 2004-10-08 09:43:57 +0000 | [diff] [blame] | 1 | |
| 2 | SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \ |
Constantin Kaplinsky | b0f89f8 | 2005-09-28 10:37:29 +0000 | [diff] [blame] | 3 | RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx \ |
Constantin Kaplinsky | 47ed8d3 | 2004-10-08 09:43:57 +0000 | [diff] [blame] | 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 |