]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
makefile: remove unused FLAGS variable.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 16:19:18 +0000 (11:19 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 16:19:18 +0000 (11:19 -0500)
makefile

index b609308255aed78e9b9a7c0e9f14f3ed5f7bb729..68f3dd35b64020d1e3858aa6fc30dc679d121b1f 100644 (file)
--- a/makefile
+++ b/makefile
@@ -9,26 +9,15 @@ TESTSUITE_BIN = dist/build/testsuite/testsuite
 .PHONY : test doc dist hlint
 
 $(BIN): $(PN).cabal $(SRCS)
-       runghc Setup.hs configure \
-                        --user \
-                        --prefix=/ \
-                        --flags=${FLAGS}
+       runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs build
 
 $(DOCTESTS_BIN): $(SRCS) test/Doctests.hs
-       runghc Setup.hs configure \
-                        --user \
-                        --prefix=/ \
-                        --flags=${FLAGS} \
-                        --enable-tests
+       runghc Setup.hs configure --user --prefix=/ --enable-tests
        runghc Setup.hs build
 
 $(TESTSUITE_BIN): $(SRCS) test/TestSuite.hs
-       runghc Setup.hs configure \
-                        --user \
-                        --prefix=/ \
-                        --flags=${FLAGS} \
-                        --enable-tests
+       runghc Setup.hs configure --user --prefix=/ --enable-tests
        runghc Setup.hs build
 
 clean:
@@ -47,7 +36,7 @@ dist:
 doc: dist/doc
 
 dist/doc: $(PN).cabal $(SRCS)
-       runghc Setup.hs configure --user --prefix=/ --flags=${FLAGS}
+       runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs haddock --all \
                                 --hyperlink-source \
                                 --haddock-options="--ignore-all-exports"