Improve help rendition.
[haskell/symantic.git] / GNUmakefile
index b29029b2fdc23a29e7b531ab230e6923d5af1d79..fae66667225e142d3c928bdeeb376252b4279b2d 100644 (file)
@@ -1,5 +1,5 @@
-PKGS := symantic-grammar symantic-document symantic symantic-lib
-HS := $(shell find $(PKGS) -name '*.hs')
+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)
@@ -45,7 +49,7 @@ lint: $(PKGS:=/lint) $(HS)
        cd $*; if hlint --quiet --report=hlint.html -XNoCPP \
         $(shell cabal-cargs --format=ghc --only=default_extensions --sourcefile=$*) $(HLINT_FLAGS) .; \
        then rm -f hlint.html; \
-       else sensible-browser hlint.html & fi
+       else sensible-browser ./hlint.html & fi
 
 tag: $(PKGS:=/tag)
 %/tag: