67ed4d2b68
git-svn-id: file:///home/svn/framework3/trunk@6373 4d416f70-5f16-0410-b530-b9f4589650da
19 lines
358 B
Makefile
19 lines
358 B
Makefile
|
|
SRCS = FdInStream.cxx FdOutStream.cxx InStream.cxx NullOutStream.cxx \
|
|
ZlibInStream.cxx ZlibOutStream.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
|