summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 6d4ca8f..0000000
--- a/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-BIN = main
-
-hs_files = $(wildcard *.hs)
-
-.PHONY: all clean remake
-
-all: $(BIN)
-
-clean:
- rm -f *.hi *.o $(BIN)
-
-remake: clean all
-
-
-$(BIN): $(hs_files)
- ghc -O3 -o $(BIN) $^