-CABAL := $(shell find . -name '*.cabal' -print -quit)
-HS := $(shell find . -name '*.hs')
+CABAL := $(shell find . -maxdepth 1 -name '*.cabal' -print -quit)
all: build
%.html/view: %.html
sensible-browser $*.html
-HLint.hs: $(HS)
+HLint.hs: $(shell find . -name '*.hs')
sed -i -e '/^-- BEGIN: generated hints/,/^-- END: Generated by hlint/d' HLint.hs
echo '-- BEGIN: generated hints' >> HLint.hs
hlint --find . | grep '^'infix | sort -u >> HLint.hs
echo '-- END: generated hints' >> HLint.hs
-lint: HLint.hs $(HS)
+lint: HLint.hs
if hlint --quiet --report=hlint.html -XNoCPP \
$(shell cabal-cargs --format=ghc --only=default_extensions --sourcefile=$(CABAL)) $(HLINT_FLAGS) .; \
then rm -f hlint.html; \