first commit

This commit is contained in:
2018-04-27 00:37:05 +02:00
committed by artlef
commit 7105cc28d2
5 changed files with 35 additions and 0 deletions

11
makefile Normal file
View File

@ -0,0 +1,11 @@
CC=ghc
ARGS=--make -dynamic
FILENAME=dictfr
all:
$(CC) $(ARGS) -o $(FILENAME) Main.hs Download.hs
clean:
rm -f *.o *.hi
cleanall:
rm -f *.o *.hi $(FILENAME)