X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=Rakka.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=0000000000000000000000000000000000000000;hp=d7584a8218dc72f3c8c46d74b40cfcc31eaada0e;hb=ae4deb027146109a28b3070904c282dcbb0be4be;hpb=c21f22c897782e6d49ce1e8cd06e2cb27d02d2f6 diff --git a/Makefile b/Makefile deleted file mode 100644 index d7584a8..0000000 --- a/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -CABAL_FILE = Rakka.cabal -GHC = ghc -EXECUTABLE = sudo ./dist/build/rakka/rakka -p 8989 -l DEBUG -#EXECUTABLE = sudo ./dist/build/rakka/rakka -p 8989 -l DEBUG +RTS -S -A60M -RTS -#EXECUTABLE = sudo ./dist/build/rakka/rakka -p 8989 -l DEBUG +RTS -p -RTS - -build: dist/setup-config Setup - $(MAKE) -C js $@ - ./Setup build - -run: build - $(EXECUTABLE) - -rebuild-index: build - $(EXECUTABLE) --rebuild-index - -dist/setup-config: $(CABAL_FILE) configure Setup Rakka.buildinfo.in - ./Setup configure --disable-optimization -fbuild-test-suite -# ./Setup configure -fhardest-optimization -# ./Setup configure -fenable-profiling - -configure: configure.ac - autoconf - -Setup: Setup.hs - $(GHC) --make Setup - -clean: - $(MAKE) -C js $@ - rm -rf dist Setup Setup.o Setup.hi - find . -name '*~' -exec rm -f {} \; - -install: build - sudo ./Setup install - -test: build - ./Setup test - -sdist: Setup - ./Setup sdist - -.PHONY: build run clean install doc sdist test