]> gitweb.michael.orlitzky.com - email-validator.git/blobdiff - makefile
Split the email address functions into their own module.
[email-validator.git] / makefile
index 4d37b72f961936c947ad3cf291d42ee1d135b6aa..7dd4524eb067117ce184bbc070e9d23ea88358b3 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
 BIN           = dist/build/email_validator/email_validator
 TESTSUITE_BIN = dist/build/testsuite/testsuite
 
-.PHONY : test
+.PHONY : test dist hlint
 
 $(BIN): src/*.hs
        runghc Setup.hs clean
@@ -27,3 +27,9 @@ test: $(BIN) $(TESTSUITE_BIN)
 dist:
        runghc Setup.hs configure
        runghc Setup.hs sdist
+
+hlint:
+       hlint --ignore="Use camelCase"     \
+             --ignore="Redundant bracket" \
+             --color                      \
+             src