Skip to content

Commit 334e07c

Browse files
committed
Enhance Makefile with additional build targets and update Javadoc command to use Gradle wrapper
1 parent 4788a7b commit 334e07c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,22 @@ coverage:
2020
./gradlew test jacocoTestReport
2121
@echo "Coverage report: build/reports/jacoco/test/html/index.html"
2222

23+
# Build the project
2324
build: clean
2425
./gradlew build publishToMavenLocal -x test
2526
@echo "see build/lib"
2627

28+
# Build the demo project
2729
oobt: build
2830
$(MAKE) -C demo all
2931

3032
# Ruby must be installed (ERB is located under $GEM_HOME/bin or under Ruby installation)
3133
readme:
3234
erb -T '-' README.md.erb > README.md
3335

36+
# Build the javadoc
3437
doc:
35-
gradle javadoc --info --warning-mode all
38+
./gradlew javadoc --info --warning-mode all
3639

3740
# Create a release using GitHub
3841
release: doc build

0 commit comments

Comments
 (0)