summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bc39a8c..c0d65c2 100644
--- a/Makefile
+++ b/Makefile
@@ -13,10 +13,12 @@ release: ## compile with releases flags
13install: release ## compile and install snuffleupagus 13install: release ## compile and install snuffleupagus
14 make -C src install 14 make -C src install
15 15
16debug: ## compile a debug build 16compile_debug: ## compile a debug build
17 cd src; phpize 17 cd src; phpize
18 export CFLAGS="-g3 -ggdb -O1 -g"; cd src; ./configure --enable-snuffleupagus --enable-debug 18 export CFLAGS="-g3 -ggdb -O1 -g"; cd src; ./configure --enable-snuffleupagus --enable-debug
19 make -C src 19 make -C src
20
21debug: compile_debug ## compile and run a debug build
20 TEST_PHP_ARGS='-q' REPORT_EXIT_STATUS=1 make -C src test 22 TEST_PHP_ARGS='-q' REPORT_EXIT_STATUS=1 make -C src test
21 23
22coverage: ## compile snuffleugpaus, and run the testsuite with coverage 24coverage: ## compile snuffleugpaus, and run the testsuite with coverage