TESTS= \
	test_accessors \
	test_alias_class_method \
	test_automatic_object \
	test_base_class_intercept \
	test_call_stack \
	test_const_method \
	test_const_var \
	test_dumpable_proc \
	test_evil_send \
	test_finalize \
	test_fix_trace_func \
	test_holder \
	test_interface \
	test_kernelless_object \
	test_method_missing_delegate \
	test_observable_method \
	test_path_concat \
	test_private_class_vars \
	test_private_instance_vars \
	test_refcount \
	test_safe_method \
	test_safe_mixin \
	test_with

RUBY = ruby -w

test: $(TESTS)

all:

install:

clean:

distclean:

realclean:

$(TESTS):
	$(RUBY) $@.rb

.PHONY : test $(TESTS)

