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