From 10f0060dba53e1bb192aebfefbf7c140b64cb84e Mon Sep 17 00:00:00 2001 From: bkurotsu Date: Thu, 18 Dec 2014 14:42:16 -0700 Subject: [PATCH] Intial build files. --- build/build.properties | 34 ++++ build/build.xml | 314 +++++++++++++++++++++++++++++++++++ build/productinfo.properties | 31 ++++ 3 files changed, 379 insertions(+) create mode 100644 build/build.properties create mode 100644 build/build.xml create mode 100644 build/productinfo.properties diff --git a/build/build.properties b/build/build.properties new file mode 100644 index 0000000..c4f0e47 --- /dev/null +++ b/build/build.properties @@ -0,0 +1,34 @@ +# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Oracle designates this +# particular file as subject to the "Classpath" exception as provided +# by Oracle in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. + +# Path to JDK will be used to compile tests +test.jdk.home=${java.home} + + +# Compile in verbose mode +javac.verbose=false +# Compile in debug mode +javac.debug=true +# Compile with deprecation flag +javac.deprecation=false + diff --git a/build/build.xml b/build/build.xml new file mode 100644 index 0000000..c8aa84b --- /dev/null +++ b/build/build.xml @@ -0,0 +1,314 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Usage: + ant <TARGET> -D<OPTIONS> + +where TARGET is: + build (default): builds all binaries, doc, and distributions. + clean: removes all generated files and directories. + clean-build: cleans then builds the project + help: prints a usage message (this message). + +Other values for TARGET are: + bin: produces binaries. + devbuild: produces binaries and javadocs. + javadoc: produces javadocs. + test: runs sanity tests. (not currently available) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build/productinfo.properties b/build/productinfo.properties new file mode 100644 index 0000000..b5f014a --- /dev/null +++ b/build/productinfo.properties @@ -0,0 +1,31 @@ +# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Oracle designates this +# particular file as subject to the "Classpath" exception as provided +# by Oracle in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. + +# Path to JDK will be used to compile sources +# Product info +PRODUCT_NAME = asmtools +PRODUCT_JAR_NAME = asmtools.jar +PRODUCT_VERSION = 6.0 +PRODUCT_MILESTONE = beta +PRODUCT_BUILDNUMBER = b01 +PRODUCT_NAME_LONG = Java Assembler Tools