Add --output option.
[doclang.git] / GNUmakefile
index dabdab471232408d4be1a4714f8161afa8c8c76c..3f90879da9bc7ae2a71f8985e78a4293f03c645e 100644 (file)
@@ -1,4 +1,4 @@
-CABAL := $(shell find . -maxdepth 1 -name '*.cabal' -printf %f -quit)
+CABAL := $(shell find . -maxdepth 1 -name '*.cabal' -print -quit)
 
 all: build
 
@@ -33,7 +33,7 @@ doc:
 %.html/view: %.html
        sensible-browser $*.html
 
-HLint.hs: $(shell find . -name '*.hs')
+HLint.hs: $(shell find . -name '*.hs' -not -name 'HLint.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
@@ -43,7 +43,7 @@ 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; \
-       else sensible-browser hlint.html & fi
+       else sensible-browser ./hlint.html & fi
 
 tag:
        name=$$(sed -ne 's/^name: *\(.*\)/\1/p' "$(CABAL)"); \