summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMikhail Osipov <mike.osipov@gmail.com>2020-01-24 04:05:22 +0300
committerMikhail Osipov <mikhail.osipov@kaspersky.com>2020-01-24 14:15:12 +0300
commit774028525cf003e284071685e2b697ad305086e2 (patch)
treee6b431082138a79f9dad7dd844adc7c4a3eb7015 /Makefile
parentab3e3860cbb836203ac707ea395af9902d29ad39 (diff)
eval query with env
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8b92448..e9a99c2 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,9 @@ default: build
$(TARGETS): $(SUBDIRS)
$(SUBDIRS):
- $(MAKE) -C $@ $(MAKECMDGOALS)
+ @$(MAKE) -C $@ $(MAKECMDGOALS)
-.PHONY: $(TARGETS) $(SUBDIRS)
+test:
+ @$(MAKE) -C test
+
+.PHONY: $(TARGETS) $(SUBDIRS) test