X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=d1b5052c3b2f59c1460a9083346d3c1486a80a72;hb=a4eb5f096c486cb94b1e8a25de7bc16879cab6e5;hp=c6c79812539f456877a7af34cd55f530f67774ac;hpb=bf31955186e4e3dd4e4f57cbf915fd9fc3d6b793;p=dead%2Fhtsn.git diff --git a/makefile b/makefile index c6c7981..d1b5052 100644 --- a/makefile +++ b/makefile @@ -1,20 +1,24 @@ BIN = dist/build/htsn/htsn TESTSUITE_BIN = dist/build/testsuite/testsuite +SRCS := $(shell find src/ -type f -name '*.hs') +TEST_SRCS := $(shell find test/ -type f -name '*.hs') .PHONY : dist hlint -$(BIN): src/*.hs src/TSN/*.hs +$(BIN): $(SRCS) runghc Setup.hs clean - runghc Setup.hs configure --user + runghc Setup.hs configure --user --prefix=/ runghc Setup.hs build -profile: src/*.hs +profile: $(SRCS) 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: src/*.hs - runghc Setup.hs configure --user +doc: *.cabal $(SRCS) + runghc Setup.hs configure --user --prefix=/ runghc Setup.hs hscolour --executables runghc Setup.hs haddock --internal \ --executables \ @@ -26,15 +30,15 @@ clean: rm -f *.xml rm -rf tmp -$(TESTSUITE_BIN): src/*.hs test/TestSuite.hs - runghc Setup.hs configure --user --enable-tests +$(TESTSUITE_BIN): $(SRCS) $(TEST_SRCS) + 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: