Skip to content

Commit

Permalink
Update build command in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
onox committed Feb 11, 2024
1 parent e47e137 commit 3205cd3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ALR_CLEAN = alr clean -- -p
ALR_BUILD = alr build --validation
ALR_BUILD = alr build --development --profiles="*=development"

.PHONY: build examples tools tests coverage docs clean

Expand All @@ -21,10 +21,10 @@ build:
cd orka_celestial && $(ALR_BUILD)

examples:
cd examples && $(ALR_BUILD)
cd examples && ADAFLAGS="-gnata" $(ALR_BUILD)

tools:
cd orka_tools && $(ALR_BUILD)
cd orka_tools && ADAFLAGS="-gnata" $(ALR_BUILD)

tests:
cd tests && ADAFLAGS="--coverage -gnata" $(ALR_BUILD)
Expand All @@ -41,6 +41,7 @@ docs:
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs:ro -u $(shell id -u):$(shell id -g) squidfunk/mkdocs-material

clean:
find . -type f -name "*.gcda" -exec rm {} \;
cd orka_egl && $(ALR_CLEAN)
cd orka_types && $(ALR_CLEAN)
cd orka_simd && $(ALR_CLEAN)
Expand Down

0 comments on commit 3205cd3

Please sign in to comment.