]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - makefile
Update the makefile to build/install a gem.
[dead/whatever-dl.git] / makefile
1 .PHONY : build test
2
3 all: install
4
5 # Ruby 1.9 doesn't include the current directory in the load path, so
6 # we pass them on the command-line.
7 test:
8 ruby -I. test/test_suite.rb
9
10 remote_test:
11 ruby -I. test/remote_test_suite.rb
12
13 clean:
14 rm -f whatever-dl-*.gem
15
16 build: clean
17 gem build whatever-dl.gemspec
18
19 install: build
20 gem install --user-install whatever-dl-*.gem