mirror of
https://github.com/GaloisInc/cryptol.git
synced 2025-01-07 08:19:12 +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
|