Describe makefile options in readme

This commit is contained in:
Robert Bendun 2022-05-02 22:12:29 +02:00
parent c8acceb329
commit 79d96aa935
2 changed files with 8 additions and 1 deletions

View File

@ -31,7 +31,7 @@ bin/unit-tests: src/tests/*.cc $(Obj)
g++ $(CXXFLAGS) $(CPPFLAGS) -o $@ $^ g++ $(CXXFLAGS) $(CPPFLAGS) -o $@ $^
clean: clean:
rm -rf bin rm -rf bin coverage
.PHONY: clean .PHONY: clean

View File

@ -1,5 +1,12 @@
# Musique interpreter # Musique interpreter
## Dostępne komendy
- `make` - Buduje interpreter `bin/musique`
- `make clean` - Usuwa reprodukowalne elementy projektu (automatycznie stworzone pliki binarne czy raporty)
- `make unit-tests-coverage` - Uruchamia raport pokrycia kodu przez testy jednostkowe
- `make unit-tests` - Uruchamia testy jednostkowe interpretera
## Budowa projektu ## Budowa projektu
``` ```