Add symantic-cli.
[haskell/symantic.git] / GNUmakefile
index 36d2a3382e902d64d80abba96501e879d1694818..fae66667225e142d3c928bdeeb376252b4279b2d 100644 (file)
@@ -1,4 +1,4 @@
-PKGS := symantic-grammar symantic-document symantic symantic-lib
+PKGS := symantic-grammar symantic-document symantic symantic-lib symantic-cli
 HS := $(shell find $(PKGS) -name '*.hs' -not -name 'HLint.hs')
 
 all: build
@@ -8,10 +8,14 @@ build: $(PKGS:=/build)
        cd $*; stack $(STACK_FLAGS) build $(STACK_BUILD_FLAGS)
 .PHONY: $(PKGS) $(foreach p,$(PKGS),$(eval $p: $p/build))
 
+.PHONY: $(PKGS:=/test)
 test: $(PKGS:=/test)
-%/test:
-       ! grep -q '^Test-Suite\>' $*/$*.cabal || \
-       { cd $*; stack $(STACK_FLAGS) test $(STACK_TEST_FLAGS); }
+define test
+$p/test:
+       ! grep -q '^Test-Suite\>' $p/$p.cabal || \
+       { cd $p; stack $$(STACK_FLAGS) test $$(STACK_TEST_FLAGS); }
+endef
+$(foreach p,$(PKGS),$(eval $(call test)))
 
 clean:   $(PKGS:=/clean)
 cleaner: $(PKGS:=/cleaner)