summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLloyd Hilaiel <lloyd@hilaiel.com>2014-02-15 10:33:27 +0100
committerLloyd Hilaiel <lloyd@hilaiel.com>2014-02-15 10:33:27 +0100
commit7ff509342ddfc17cccabeb558f151d00a5400f80 (patch)
tree38b0ef9d404ae2f05df3ba3bfc6c31b6613d9961
parent612aba6edd5043fcd67ac169f22c9b8f753fbf68 (diff)
downloadyajl-7ff509342ddfc17cccabeb558f151d00a5400f80.tar.gz
run api tests by default
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index 6a8fa09..d562332 100755
--- a/configure
+++ b/configure
@@ -49,7 +49,7 @@ cd ..
echo "== Generating Makefile"
cat > ./Makefile <<EOS
.PHONY: all clean distclean install package test distro
-all: distro doc test
+all: distro doc test test-api
distro:
@cd build && make
@@ -60,6 +60,9 @@ doc:
test:
@cd build && make test
+test-api:
+ @cd build && make test-api
+
clean:
@cd build && make clean