summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--Makefile17
2 files changed, 0 insertions, 20 deletions
diff --git a/.gitignore b/.gitignore
index efda63e..6a123fa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,3 @@
-lisp
-*.hi
-*.o
.stack-work/
.cabal-sandbox
cabal.sandbox.config
diff --git a/Makefile b/Makefile
deleted file mode 100644
index f053d5f..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-GHC = ghc
-GHCFLAGS = -O3 -Wall
-TARGET = lisp
-
-OBJDIR = obj
-
-.PHONY: all clean
-
-all: $(TARGET)
-
-clean:
- rm -f $(TARGET)
- rm -rf obj
-
-$(TARGET): $(wildcard *.hs)
- @mkdir -p $(OBJDIR)
- $(GHC) -o $@ $(GHCFLAGS) $^ -hidir $(OBJDIR) -odir $(OBJDIR)