exa/Makefile
2014-06-23 18:30:08 +01:00

16 lines
139 B
Makefile

COMPILER = rustc
all:
$(COMPILER) exa.rs
test:
$(COMPILER) --test exa.rs -o exa-test
./exa-test
clean:
rm -f exa
rm -f exa-test