X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Flwn-epub.git;a=blobdiff_plain;f=makefile;h=a848bcc9e227bed5f264de15f287829d98eda6bc;hp=ec658b07233d557c7bc4e2297927025376f6c5c0;hb=a4d1f36a2dfb5db56f382d9b25ea70de7ef38633;hpb=b18c060e5cb708901eb29f1f27b25c467875a143 diff --git a/makefile b/makefile index ec658b0..a848bcc 100644 --- a/makefile +++ b/makefile @@ -2,10 +2,11 @@ # There's onlt one '$' in the awk script, but we have to double-money # it for make. -PN := $(shell grep 'name:' *.cabal | awk '{ print $$2 }') -BIN := dist/build/$(PN)/$(PN) +PN = $(shell grep 'name:' *.cabal | awk '{ print $$2 }') +BIN = dist/build/$(PN)/$(PN) +SRCS = $(shell find src/ -name '*.hs') -$(BIN): src/*.hs +$(BIN): $(SRCS) runghc Setup.hs clean runghc Setup.hs configure --user --flags=${FLAGS} runghc Setup.hs build @@ -16,6 +17,8 @@ clean: rm -f *.prof rm -rf .hpc +install: $(BIN) + runghc Setup.hs install # Neither 'haddock' nor 'hscolour' seem to work properly. doc: src_html