]> gitweb.michael.orlitzky.com - dead/htsn.git/commitdiff
Set --prefix=/ in the makefile.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 23 Dec 2013 22:37:46 +0000 (17:37 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 23 Dec 2013 22:37:46 +0000 (17:37 -0500)
makefile

index 8710287b79cb52e0978df8e004bddc756ae3056f..2fb6a0379991140d546cdc282bec5203dc099b0a 100644 (file)
--- a/makefile
+++ b/makefile
@@ -5,16 +5,16 @@ TESTSUITE_BIN = dist/build/testsuite/testsuite
 
 $(BIN): src/*.hs src/TSN/*.hs
        runghc Setup.hs clean
-       runghc Setup.hs configure --user
+       runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs build
 
 profile: src/*.hs
        runghc Setup.hs clean
-       runghc Setup.hs configure --user --enable-executable-profiling
+       runghc Setup.hs configure --user --enable-executable-profiling --prefix=/
        runghc Setup.hs build
 
 doc: *.cabal src/*.hs
-       runghc Setup.hs configure --user
+       runghc Setup.hs configure --user --prefix=/
        runghc Setup.hs hscolour --executables
        runghc Setup.hs haddock --internal    \
                                --executables \
@@ -27,14 +27,14 @@ clean:
        rm -rf tmp
 
 $(TESTSUITE_BIN): src/*.hs test/TestSuite.hs
-       runghc Setup.hs configure --user --enable-tests
+       runghc Setup.hs configure --user --enable-tests --prefix=/
        runghc Setup.hs build
 
 test: $(BIN) $(TESTSUITE_BIN)
        runghc Setup.hs test
 
 dist:
-       runghc Setup.hs configure
+       runghc Setup.hs configure --prefix=
        runghc Setup.hs sdist
 
 hlint: