mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-17 13:01:31 +03:00
11 lines
178 B
Makefile
11 lines
178 B
Makefile
.PHONY: all
|
|
all: compileProgrammingCryptol
|
|
@./compileProgrammingCryptol
|
|
|
|
|
|
compileProgrammingCryptol: compileProgrammingCryptol.hs
|
|
@ghc --make -o $@ $<
|
|
|
|
clean:
|
|
@rm -f *.hi *.o
|