mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-05 12:27:53 +00:00
16 lines
139 B
Makefile
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
|
|
|
|
|
|
|