about summary refs log tree commit homepage
path: root/.gitignore
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-02-20 20:54:58 -0800
committerEric Wong <normalperson@yhbt.net>2009-02-21 04:41:17 -0800
commita19e220a9e000b730da92b9d9b5f76e6c7cc2ee1 (patch)
tree9a98b56158ce66c73c7bce67116d877812fba0a8 /.gitignore
parent7c396fbd05d01ee5cb1c92def09049db3a3cec9f (diff)
downloadunicorn-a19e220a9e000b730da92b9d9b5f76e6c7cc2ee1.tar.gz
Add a install-test for doing a mock install with private http11
and bin/unicorn and appropriate PATH/RUBYLIB env.

Also add a normal install target so we can just type
"make install" and just be done with a regular
installation (and it'll revert files if using git).

I use the following local.mk to augment my GNUmakefile.  It
allows me to run "make -j full-test" and run both 1.8 and 1.9
tests in parallel.

--------------------------- 8< -------------------------
DLEXT := so
rack_ver := 0.9.1

ifeq ($(r19),)
  ruby := $(HOME)/bin/ruby
  RUBYLIB := $(HOME)/lib/ruby/gems/1.8/gems/rack-$(rack_ver)/lib
else
  export PATH := $(HOME)/ruby-1.9/bin:$(PATH)
  ruby := $(HOME)/ruby-1.9/bin/ruby
  RUBYLIB := $(HOME)/ruby-1.9/lib/ruby/gems/1.9.1/gems/rack-$(rack_ver)/lib
endif

SHELL := /bin/bash -e -o pipefail

full-test: test-18 test-19
test-18:
	$(MAKE) test 2>&1 | sed -u -e 's!^!1.8 !'
test-19:
	$(MAKE) test r19=1 2>&1 | sed -u -e 's!^!1.9 !'
--------------------------- 8< -------------------------
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index df595f9..f564865 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ pkg/
 /.config
 /InstalledFiles
 /doc
+/test/install-*