X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Makefile;fp=Makefile;h=0000000000000000000000000000000000000000;hb=e2a6ee839c0ca27b25b32656a5c080e4b464e7c9;hp=4f04f26ccafb1536242963637ab557181a660edb;hpb=d0558f77cf306aa2cab58a71aeecff04c1ffcd06;p=Lucu.git diff --git a/Makefile b/Makefile deleted file mode 100644 index 4f04f26..0000000 --- a/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -CABAL_FILE = Lucu.cabal -GHC = ghc - -build: dist/setup-config Setup - ./Setup build - -run: build - @echo ".:.:. Let's go .:.:." - $(MAKE) -C examples run - -dist/setup-config: $(CABAL_FILE) Setup -# ./Setup configure --disable-optimization - ./Setup configure -O - -Setup: Setup.hs - $(GHC) --make Setup - -clean: - rm -rf dist Setup Setup.o Setup.hi - find . -name '*~' -exec rm -f {} \; - $(MAKE) -C examples clean - -doc: dist/setup-config Setup - ./Setup haddock - -install: build - sudo ./Setup install - -sdist: Setup - ./Setup sdist - -.PHONY: build run clean install doc sdist