dictfr/makefile
2018-05-01 15:13:49 +02:00

12 lines
175 B
Makefile

CC=ghc
ARGS=--make -dynamic
FILENAME=dictfr
all:
$(CC) $(ARGS) -o $(FILENAME) Main.hs Download.hs ParseHtml.hs
clean:
rm -f *.o *.hi
cleanall:
rm -f *.o *.hi $(FILENAME)