mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-22 12:05:11 +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
|
|
|
|
|
|
|