Added files

This commit is contained in:
saundersp
2023-06-25 00:25:50 +02:00
commit 469b5b2b3d
6 changed files with 348 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
.PHONY: all Main debug start clean
all: Main
Main: Main.hs
@ghc -Wno-tabs Main.hs
start: Main
@./Main
debug: Main.hs
@ghc -Wno-tabs -keep-hc-files -keep-tmp-files $^
clean:
@rm *.hi Main *.o || true