summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLaura <the-ceo-of-antifa@protonmail.com>2023-01-05 15:13:43 +0100
committerLaura <the-ceo-of-antifa@protonmail.com>2023-01-05 15:13:43 +0100
commit72d657815b4e4bc2a8a0de5301cea06c991b3cd4 (patch)
treeb6c1630fa230f75fec67c1e44ee576a7199a1d17 /Makefile
downloadmiaowe-72d657815b4e4bc2a8a0de5301cea06c991b3cd4.tar.gz
miaowe-72d657815b4e4bc2a8a0de5301cea06c991b3cd4.zip
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0ea3d7b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+SRCS := miaowe.hs
+TARGET := miaowe
+
+$(TARGET): $(SRCS)
+ ghc -g -o $(TARGET) $(SRCS)