From: Michael Orlitzky Date: Sat, 8 Jun 2013 18:58:53 +0000 (-0400) Subject: Remove useless --flags in makefile. X-Git-Tag: 0.0.2^0 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=hath.git;a=commitdiff_plain;h=7622c66d1bb0592ae6cd5b9c6092ff2e0490c4a1 Remove useless --flags in makefile. Version bump and add other-modules to cabal file. --- diff --git a/hath.cabal b/hath.cabal index 5354d42..7799a7e 100644 --- a/hath.cabal +++ b/hath.cabal @@ -1,5 +1,5 @@ name: hath -version: 0.0.1 +version: 0.0.2 cabal-version: >= 1.8 author: Michael Orlitzky maintainer: Michael Orlitzky @@ -74,6 +74,16 @@ executable hath hs-source-dirs: src/ + other-modules: + Bit + Cidr + CommandLine + ExitCodes + IPv4Address + Maskable + Maskbits + Octet + ghc-options: -Wall -fwarn-hi-shadowing diff --git a/makefile b/makefile index 276c512..5d42778 100644 --- a/makefile +++ b/makefile @@ -25,7 +25,7 @@ clean: $(TESTSUITE_BIN): src/*.hs test/TestSuite.hs - runghc Setup.hs configure --user --flags=${FLAGS} --enable-tests + runghc Setup.hs configure --user --enable-tests runghc Setup.hs build test: $(BIN) $(TESTSUITE_BIN)