cryptol/docs/ProgrammingCryptol/tools/Makefile
2014-04-17 15:34:25 -07:00

11 lines
178 B
Makefile

.PHONY: all
all: compileProgrammingCryptol
@./compileProgrammingCryptol
compileProgrammingCryptol: compileProgrammingCryptol.hs
@ghc --make -o $@ $<
clean:
@rm -f *.hi *.o