summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorlloydh <lloydh@e775cfb5-b74b-0410-aad5-5bebe4a96390>2008-01-14 17:52:40 +0000
committerlloydh <lloydh@e775cfb5-b74b-0410-aad5-5bebe4a96390>2008-01-14 17:52:40 +0000
commitbc7f3a02cbf68a11f6b06c72aaa05af9e694ab36 (patch)
tree1cc205076e290c45ef5736b53f433809315386fa /configure
parent00ca98b8460cdd239b99f47e9a2b7e8c60cc15b0 (diff)
downloadyajl-bc7f3a02cbf68a11f6b06c72aaa05af9e694ab36.tar.gz
documentation updates, add make test target, build documentation by
default when make is issued from the top level. git-svn-id: http://yajl-c.googlecode.com/svn/yajl/trunk@91 e775cfb5-b74b-0410-aad5-5bebe4a96390
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 10 insertions, 2 deletions
diff --git a/configure b/configure
index 375e88d..1fd157d 100755
--- a/configure
+++ b/configure
@@ -63,10 +63,18 @@ end
# now generate a Makefile
puts "== Generating Makefile"
File.open("Makefile", "w+") do |f|
- f.puts ".PHONY: all clean distclean install package"
- f.puts "all:"
+ f.puts ".PHONY: all clean distclean install package test distro"
+ f.puts "all: distro doc test"
+ f.puts
+ f.puts "distro:"
f.puts " @cd build && make"
f.puts
+ f.puts "doc:"
+ f.puts " @cd build && make doc"
+ f.puts
+ f.puts "test:"
+ f.puts " @cd build && make test"
+ f.puts
f.puts "clean:"
f.puts " @cd build && make clean"
f.puts