Makefile 139 B

123456789101112131415
  1. COMPILER = rustc
  2. all:
  3. $(COMPILER) exa.rs
  4. test:
  5. $(COMPILER) --test exa.rs -o exa-test
  6. ./exa-test
  7. clean:
  8. rm -f exa
  9. rm -f exa-test