1 #
   2 # Copyright (c) 2009, 2015, Oracle and/or its affiliates. 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.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #  
  23 #
  24 PKGLIST = \
  25 com.sun.hotspot.tools.compiler
  26 #END PKGLIST
  27 
  28 FILELIST = com/sun/hotspot/tools/compiler/*.java
  29 
  30 ifneq "x$(ALT_BOOTDIR)" "x"
  31   BOOTDIR := $(ALT_BOOTDIR)
  32 endif
  33 
  34 ifeq "x$(BOOTDIR)" "x"
  35   JDK_HOME := $(shell dirname $(shell which java))/..
  36 else
  37   JDK_HOME := $(BOOTDIR)
  38 endif
  39 
  40 isUnix := $(shell test -r c:/; echo $$?)
  41 
  42 ifeq "$(isUnix)" "1"
  43     CPS := :
  44 else
  45     CPS := ";"
  46 endif
  47 
  48 SRC_DIR    = src
  49 BUILD_DIR  = build
  50 OUTPUT_DIR = $(BUILD_DIR)/classes
  51 
  52 # gnumake 3.78.1 does not accept the *s, 
  53 # so use the shell to expand them
  54 ALLFILES := $(patsubst %,$(SRC_DIR)/%,$(FILELIST))
  55 ALLFILES := $(shell /bin/ls $(ALLFILES))
  56 
  57 JAVAC = $(JDK_HOME)/bin/javac
  58 JAR = $(JDK_HOME)/bin/jar
  59 
  60 # Tagging it on because there's no reason not to run it
  61 all: logc.jar
  62 
  63 logc.jar: filelist manifest.mf
  64         @mkdir -p $(OUTPUT_DIR)
  65         $(JAVAC) -deprecation -sourcepath $(SRC_DIR) -d $(OUTPUT_DIR) @filelist
  66         $(JAR) cvfm logc.jar manifest.mf -C $(OUTPUT_DIR) com
  67 
  68 .PHONY: filelist
  69 filelist: $(ALLFILES)
  70         @rm -f $@
  71         @echo $(ALLFILES) > $@
  72 
  73 clean::
  74         rm -rf filelist logc.jar
  75         rm -rf $(BUILD_DIR)