make/Makefile

Mon, 04 May 2009 22:14:18 -0700

author
tbell
date
Mon, 04 May 2009 22:14:18 -0700
changeset 51
5fb4fbea81c3
parent 45
31822b475baa
child 57
d95fec0fa489
child 63
605e1cdeba48
permissions
-rw-r--r--

Merge

     1 #
     2 # Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Sun designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Sun in the LICENSE file that accompanied this code.
    10 #
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14 # version 2 for more details (a copy is included in the LICENSE file that
    15 # accompanied this code).
    16 #
    17 # You should have received a copy of the GNU General Public License version
    18 # 2 along with this work; if not, write to the Free Software Foundation,
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20 #
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
    24 #
    26 # Makefile for jaxws: wrapper around Ant build.xml file
    28 #
    29 # On Solaris, the 'make' utility from Sun will not work with these makefiles.
    30 #    This little rule is only understood by Sun's make, and is harmless
    31 #    when seen by the GNU make tool. If using Sun's make, this causes the
    32 #    make command to fail.
    33 #
    34 SUN_MAKE_TEST:sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
    36 ifdef QUIET
    37   ANT_OPTIONS += -quiet
    38 endif
    40 ifdef VERBOSE
    41   ANT_OPTIONS += -verbose
    42 endif
    44 ifdef JDK_VERSION
    45   ANT_OPTIONS += -Djdk.version=$(JDK_VERSION)
    46 endif 
    48 ifdef FULL_VERSION
    49   ANT_OPTIONS += -Dfull.version='$(FULL_VERSION)' # will contain spaces
    50 endif 
    52 ifdef MILESTONE
    53   ANT_OPTIONS += -Dmilestone=$(MILESTONE)
    54 endif
    56 ifdef BUILD_NUMBER
    57   ANT_OPTIONS += -Dbuild.number=$(BUILD_NUMBER)
    58 else
    59   ifdef JDK_BUILD_NUMBER
    60     ANT_OPTIONS += -Dbuild.number=$(JDK_BUILD_NUMBER)
    61   endif
    62 endif
    64 ifeq ($(VARIANT), DBG)
    65   ANT_OPTIONS += -Djavac.debug=true
    66 else
    67   ifeq ($(VARIANT), OPT)
    68     ANT_OPTIONS += -Djavac.debug=false
    69   endif
    70 endif
    72 # Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
    73 # and the somewhat misnamed CLASS_VERSION (-target NN)
    74 ifdef TARGET_CLASS_VERSION
    75   ANT_OPTIONS += -Djavac.target=$(TARGET_CLASS_VERSION)
    76 else
    77   ifdef JAVAC_TARGET_ARG
    78     ANT_OPTIONS += -Djavac.target=$(JAVAC_TARGET_ARG)
    79   endif
    80 endif
    82 ifdef ALT_BOOTDIR
    83   ANT_JAVA_HOME = JAVA_HOME=$(ALT_BOOTDIR)
    84 endif
    86 ifdef ALT_OUTPUTDIR
    87   OUTPUTDIR = $(ALT_OUTPUTDIR)
    88   ANT_OPTIONS += -Dbuild.dir=$(ALT_OUTPUTDIR)/build
    89   ANT_OPTIONS += -Ddist.dir=$(ALT_OUTPUTDIR)/dist
    90 else
    91   OUTPUTDIR = ..
    92 endif
    94 ifdef ALT_LANGTOOLS_DIST
    95   ANT_OPTIONS += -Dbootstrap.dir=$(ALT_LANGTOOLS_DIST)/bootstrap
    96 endif
    98 ifdef FINDBUGS_HOME
    99   ANT_OPTIONS += -Dfindbugs.home=$(FINDBUGS_HOME)
   100 endif
   102 ifdef ANT_HOME
   103   ANT = $(ANT_HOME)/bin/ant
   104   ifneq ($(shell test -x $(ANT); echo $$?), 0)
   105     $(error "$(ANT) not found; please update ANT_HOME")
   106   endif
   107 else
   108   ANT = ant
   109   ifneq ($(shell which $(ANT) > /dev/null; echo $$?), 0)
   110     $(error "\"ant\" not found; please set ANT_HOME or put \"ant\" on your PATH")
   111   endif
   112 endif
   114 # Default target and expected 'do everything' target
   115 all: build
   117 # Standard make clobber target
   118 clobber: clean
   120 # All ant targets of interest
   121 ANT_TARGETS = build clean sanity # for now
   123 # Create a make target for each
   124 $(ANT_TARGETS):
   125 	$(ANT_JAVA_HOME) $(ANT) -version
   126 	$(ANT_JAVA_HOME) $(ANT) $(ANT_OPTIONS) $@
   128 # Targets for Sun's internal JPRT build system
   129 JPRT_ARCHIVE_BUNDLE=$(OUTPUTDIR)/jprt.zip
   130 jprt_build_product jprt_build_debug jprt_build_fastdebug: all
   131 	$(RM) $(JPRT_ARCHIVE_BUNDLE)
   132 	( cd $(OUTPUTDIR)/dist && \
   133 	   zip -q -r $(JPRT_ARCHIVE_BUNDLE) . )
   135 # Declare these phony (not filenames)
   136 .PHONY: $(ANT_TARGETS) all clobber \
   137 	jprt_build_product jprt_build_debug jprt_build_fastdebug

mercurial