summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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