cryptol/docs/ProgrammingCryptol/tools/Makefile

11 lines
178 B
Makefile
Raw Normal View History

2014-04-18 02:34:25 +04:00
.PHONY: all
all: compileProgrammingCryptol
@./compileProgrammingCryptol
compileProgrammingCryptol: compileProgrammingCryptol.hs
@ghc --make -o $@ $<
clean:
@rm -f *.hi *.o