blob: 6598df2b4f8f530fc4c620f4e7257a21460f4347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
$(srcdir)/sp_config_scanner.c: $(srcdir)/sp_config_scanner.re
if re2c -v |grep ' [23]\.' 2>/dev/null; then \
re2c -W --conditions --bit-vectors --no-debug-info --output $@ $<; \
re2c -W --no-generation-date --bit-vectors --no-version --conditions --no-debug-info --output $(srcdir)/sp_config_scanner.cached.c $<; \
else \
cp $(srcdir)/sp_config_scanner.cached.c $@; \
fi;
.PHONY: tests
tests:
$(MAKE) test NO_INTERACTION=1 SP_NODEBUG=1 SP_SKIP_OLD_PHP_CHECK=1 $(TESTS)
|