選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Makefile.in 413B

12345678910111213141516171819
  1. SRCS = Exception.cxx FdInStream.cxx FdOutStream.cxx InStream.cxx \
  2. NullOutStream.cxx RandomStream.cxx ZlibInStream.cxx ZlibOutStream.cxx \
  3. HexInStream.cxx HexOutStream.cxx
  4. OBJS = $(SRCS:.cxx=.o)
  5. DIR_CPPFLAGS = -I$(top_srcdir) @ZLIB_INCLUDE@
  6. library = librdr.a
  7. all:: $(library)
  8. $(library): $(OBJS)
  9. rm -f $(library)
  10. $(AR) $(library) $(OBJS)
  11. $(RANLIB) $(library)
  12. # followed by boilerplate.mk