exa/Makefile

16 lines
139 B
Makefile
Raw Normal View History

2014-06-23 17:30:08 +00:00
COMPILER = rustc
all:
$(COMPILER) exa.rs
test:
$(COMPILER) --test exa.rs -o exa-test
./exa-test
clean:
rm -f exa
rm -f exa-test