Sha256: 29408738787bf32778a9df1e2f31c60dfe240d2ba3bc8d6c44470984477be67b

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

RUBY?=ruby
RUBY_FLAGS?=-w -Ilib -Ibin
RUBY_LIB?=$(shell $(RUBY) -rrbconfig -e 'include Config; print CONFIG["sitelibdir"]')
PREFIX?=/usr/local

all test: FORCE
	GEM_SKIP=ParseTree $(RUBY) $(RUBY_FLAGS) test/test_all.rb

# we only install test_sexp_processor.rb to help make ruby_to_c's
# subclass tests work.

docs:
	rdoc -d -I png --main SexpProcessor -x test_\* -x something.rb

install:
	cp -f lib/parse_tree.rb lib/sexp_processor.rb lib/composite_sexp_processor.rb $(RUBY_LIB)
	cp -f test/test_sexp_processor.rb $(RUBY_LIB)
	cp -f bin/parse_tree_show $(PREFIX)/bin
	cp -f bin/parse_tree_abc  $(PREFIX)/bin
	chmod 444 $(RUBY_LIB)/parse_tree.rb $(RUBY_LIB)/sexp_processor.rb $(RUBY_LIB)/composite_sexp_processor.rb $(RUBY_LIB)/test_sexp_processor.rb
	chmod 555 $(PREFIX)/bin/parse_tree_show $(PREFIX)/bin/parse_tree_abc

uninstall:
	rm -f $(RUBY_LIB)/parse_tree.rb $(RUBY_LIB)/sexp_processor.rb $(RUBY_LIB)/composite_sexp_processor.rb $(RUBY_LIB)/test_sexp_processor.rb
	rm -f $(PREFIX)/bin/parse_tree_show $(PREFIX)/bin/parse_tree_abc

audit:
	ZenTest composite_sexp_processor.rb sexp_processor.rb test_all.rb test_composite_sexp_processor.rb test_sexp_processor.rb

clean:
	-find . -name \*~ | xargs rm
	-rm -fr diff diff.txt *.gem doc $$HOME/.ruby_inline

demo:
	echo 1+1 | $(RUBY) $(RUBY_FLAGS) ./bin/parse_tree_show -f

gem:
	gem ParseTree.gemspec

FORCE:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ParseTree-1.3.3 Makefile