diff options
author | Dmitry Mikhirev | 2014-12-02 16:32:06 +0300 |
---|---|---|
committer | Dmitry Mikhirev | 2014-12-02 16:32:06 +0300 |
commit | 25ad52a67f6f705294db76741b89c5f4fc12af2e (patch) | |
tree | 409e14046ea63f8862c84e7f734de21b9f1651d3 | |
parent | 94c74c42434c5028029def2206c8b0933f0767c6 (diff) | |
download | make_pcre-25ad52a67f6f705294db76741b89c5f4fc12af2e.tar.gz make_pcre-25ad52a67f6f705294db76741b89c5f4fc12af2e.tar.bz2 make_pcre-25ad52a67f6f705294db76741b89c5f4fc12af2e.tar.xz make_pcre-25ad52a67f6f705294db76741b89c5f4fc12af2e.zip |
cosmetics
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | tests.mk | 2 |
2 files changed, 3 insertions, 5 deletions
@@ -11,10 +11,10 @@ pcre.so: pcre.c check: @if [ -n "`which $(GNUMAKE4)`" ] ; then \ - $(GNUMAKE4) -k -f tests.mk ; \ + $(GNUMAKE4) -k -f tests.mk ; \ else \ - echo 'you need GNU make 4.x to run tests' ; \ - return 1 ; \ + echo 'you need GNU make 4.x to run tests' ; \ + return 1 ; \ fi clean: @@ -57,8 +57,6 @@ test010 = -n "$(shell \ ### END OF TEST EXPRESSIONS ### -#$(info $(value test010)) - test%: @if [ $($@) ] ; then \ echo '$@ PASSED'; \ |