summaryrefslogtreecommitdiffstats
path: root/rdr/Makefile.in
blob: 9edf28421bd4e811e77bf7057349e83765ed7a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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