2020-01-31 14:29:45 -06:00

17 lines
398 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)))../..)
JAVA_BUILD_DIR = ${TRICK_HOME}/libexec/trick/java/build
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
all:
@echo "Building java application... For details see ${JAVA_BUILD_DIR}/maven.out"
@${MVN} -q package
javadoc:
${MVN} javadoc:javadoc
clean:
@${MVN} -q clean
@echo java build directory cleaned.