]> gitweb.michael.orlitzky.com - hath.git/commitdiff
Remove useless --flags in makefile. 0.0.2
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 8 Jun 2013 18:58:53 +0000 (14:58 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 8 Jun 2013 18:58:53 +0000 (14:58 -0400)
Version bump and add other-modules to cabal file.

hath.cabal
makefile

index 5354d423fecc0367bbee4f744f3bfafe8944929b..7799a7e3914251a5311a35ad496bcfbabf9da103 100644 (file)
@@ -1,5 +1,5 @@
 name:           hath
-version:        0.0.1
+version:        0.0.2
 cabal-version:  >= 1.8
 author:         Michael Orlitzky
 maintainer:    Michael Orlitzky <michael@orlitzky.com>
@@ -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
index 276c5123cf4c976f19c330bd0707390ee76b1c3f..5d42778f0942b95ef9a0266ed324f43ba470eadb 100644 (file)
--- 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)