Build System Java Code Module


Overview

The Build System Java Code Module provides the build system with the ability to compile Java source code into java byte code, class files, and jar files suitable for running on Java Virtual Machines.

Macros and Controls

XXX Not Yet Doc'ed.

Targets


javacode_info

javacode_info Overview

Simple target to display information about the macro settings of all global macros used by the java code module of the build system. The javacode_info target will be built during the "info" phase of a build, and can be built in isolation by requesting the javacode_info target.

javacode_man

javacode_man Overview

Simple target to display usage information and help pertaining to the java code module of the build system. The javacode_man target will be built during the "man" phase of a build, and can be built in isolation by requesting the javacode_man target.

Example Makefile


# The source root of this component
COMPONENT_ROOT=../..

# The root of the build system
BS_ROOT=$(COMPONENT_ROOT)/../build3

# Boostrap Build system definitions.
include $(BS_ROOT)/defines.mk



# Finally, include the rules to make the build system go.
include $(BS_ROOT)/rules.mk