dictfr/makefile
2018-04-27 00:37:57 +02:00

12 lines
162 B
Makefile

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)