]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Makefile
Fixed stack-overflow bugs
[Lucu.git] / Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
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