David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 1 | EXTRA_DIST = \ |
| 2 | CHANGELOG \ |
| 3 | LICENSE \ |
| 4 | Rakefile \ |
| 5 | Manifest \ |
| 6 | setup.rb \ |
| 7 | lib \ |
| 8 | ext \ |
| 9 | benchmark \ |
| 10 | spec |
Kevin Clark | 4bd8916 | 2008-07-08 00:47:49 +0000 | [diff] [blame] | 11 | |
| 12 | all-local: |
| 13 | $(RUBY) setup.rb config |
| 14 | $(RUBY) setup.rb setup |
| 15 | |
| 16 | install-exec-hook: |
| 17 | $(RUBY) setup.rb install |
| 18 | |
David Reiss | 8c28df2 | 2008-11-20 21:24:18 +0000 | [diff] [blame] | 19 | # Make sure this doesn't fail if Ruby is not configured. |
Kevin Clark | 4bd8916 | 2008-07-08 00:47:49 +0000 | [diff] [blame] | 20 | clean-local: |
David Reiss | 8c28df2 | 2008-11-20 21:24:18 +0000 | [diff] [blame] | 21 | RUBY=$(RUBY) ; if test -z "$$RUBY" ; then RUBY=: ; fi ; \ |
| 22 | $$RUBY setup.rb clean |
Kevin Clark | 4bd8916 | 2008-07-08 00:47:49 +0000 | [diff] [blame] | 23 | |
| 24 | check-local: all |