2020-01-30 13:12:51 -06:00

14 lines
256 B
Makefile
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

TRICK_HOME := $(abspath $(dir $(lastword $(MAKEFILE_LIST)))../..)
all: ${TRICK_HOME}/libexec/trick/java/build
@echo "Java build successful"
${TRICK_HOME}/libexec/trick/java/build:
mvn package
javadoc:
mvn javadoc:javadoc
clean:
mvn clean