Sha256: d44e7e17a7fd97504b9f32e1fa90b2e62942d7549a3cd6e83955882cb1f6f706

Contents?: true

Size: 859 Bytes

Versions: 9

Compression:

Stored size: 859 Bytes

Contents

RUBY_EXTCONF_OPTIONS = -I@RICE_ROOT@/ruby/lib
EXTCONF_OPTIONS = --with-cppflags="-I@RICE_ROOT@" --with-libpath="@RICE_ROOT@/rice"

EXTRA_DIST = \
  t1/extconf.rb \
  t1/t1.cpp \
  t2/extconf.rb \
  t2/t2.cpp

all:

t1/Makefile: t1/extconf.rb ../../config.status ../../ruby/lib/mkmf-rice.rb
	@RUBY@ $(RUBY_EXTCONF_OPTIONS) -C t1 extconf.rb $(EXTCONF_OPTIONS)

t2/Makefile: t2/extconf.rb ../../config.status ../../ruby/lib/mkmf-rice.rb
	@RUBY@ $(RUBY_EXTCONF_OPTIONS) -C t2 extconf.rb $(EXTCONF_OPTIONS)

all: t1_all t2_all

t1_all: t1/Makefile
	${MAKE} -C t1 all

t2_all: t2/Makefile
	${MAKE} -C t2 all

clean: t1_clean t2_clean

t1_clean: t1/Makefile
	${MAKE} -C t1 clean

t2_clean: t2/Makefile
	${MAKE} -C t2 clean

distclean: t1_distclean t2_distclean

t1_distclean: t1/Makefile
	${MAKE} -C t1 distclean

t2_distclean: t2/Makefile
	${MAKE} -C t2 distclean

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
rice-3.0.0 test/ext/Makefile.am
rice2-2.2.1 test/ext/Makefile.am
rice2-2.2.0 test/ext/Makefile.am
rice-2.2.0 test/ext/Makefile.am
rice-2.1.3 test/ext/Makefile.am
rice-2.1.2 test/ext/Makefile.am
rice-2.1.1 test/ext/Makefile.am
rice-2.1.0 test/ext/Makefile.am
rice-2.0.0 test/ext/Makefile.am