X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=276c5123cf4c976f19c330bd0707390ee76b1c3f;hb=refs%2Ftags%2F0.0.1;hp=2061f444e91d607cb8ef8f8d5bb98c66422dd353;hpb=ea257ba2e191df27cf23feb98a8110157987bfb9;p=hath.git diff --git a/makefile b/makefile index 2061f44..276c512 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ BIN = dist/build/hath/hath TESTSUITE_BIN = dist/build/testsuite/testsuite -.PHONY : test dist +.PHONY : test dist hlint $(BIN): src/*.hs runghc Setup.hs clean @@ -34,3 +34,9 @@ test: $(BIN) $(TESTSUITE_BIN) dist: runghc Setup.hs configure runghc Setup.hs sdist + +hlint: + hlint --ignore="Use camelCase" \ + --ignore="Redundant bracket" \ + --color \ + src