Skip to content

Commit 419ed99

Browse files
authored
Merge pull request #22 from borjapazr/fix/makefile_best_practices
Fix typo and adapt Makefile to best practices
2 parents ee58662 + 4446fbb commit 419ed99

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
.PONY: all build test
2-
1+
.PHONY: all
32
all: build
43

4+
.PHONY: build
55
build:
66
@./gradlew assemble --warning-mode all
77

8+
.PHONY: test
89
test:
910
@./gradlew check --warning-mode all

0 commit comments

Comments
 (0)