X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=bbd831f5a1da11896879449dcacae8955c3115eb;hb=453cecf83e146e1ec23545fb371f7b91ab6adea7;hp=80beeebd03181c74791cd3fda1911ac2bfa7d1f0;hpb=a9e9f50818285bf66cd64e5a248175eecb8e1fea;p=Lucu.git diff --git a/Makefile b/Makefile index 80beeeb..bbd831f 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,16 @@ CABAL_FILE = Lucu.cabal GHC = ghc -WHAT_TO_RUN = ./dist/build/HelloWorld/HelloWorld + +build: .setup-config Setup + ./Setup build run: build @echo ".:.:. Let's go .:.:." $(WHAT_TO_RUN) - -build: .setup-config Setup - ./Setup build + $(MAKE) -C examples run .setup-config: $(CABAL_FILE) Setup - ./Setup configure + ./Setup configure -p Setup: Setup.hs $(GHC) --make Setup @@ -18,5 +18,12 @@ Setup: Setup.hs clean: rm -rf dist Setup Setup.o Setup.hi .setup-config find . -name '*~' -exec rm -f {} \; + $(MAKE) -C examples clean + +doc: + ./Setup haddock + +install: build + ./Setup install -.PHONY: run build clean \ No newline at end of file +.PHONY: build run clean install doc \ No newline at end of file