summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..cb0faab
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+GHC = ghc
+GHCFLAGS = -Wall -O3
+
+TARGET = main
+
+.PHONY: all clean remake
+
+all: $(TARGET)
+
+clean:
+ rm -f $(TARGET) *.o *.hi
+
+remake: clean
+ make all
+
+
+$(TARGET): *.hs
+ $(GHC) $(GHCFLAGS) $^ -o $@