1#
2# Copyright (c) 2009, 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#
24PKGLIST = \
25com.sun.hotspot.tools.compiler
26#END PKGLIST
27
28FILELIST = com/sun/hotspot/tools/compiler/*.java
29
30ifneq "x$(ALT_BOOTDIR)" "x"
31  BOOTDIR := $(ALT_BOOTDIR)
32endif
33
34ifeq "x$(BOOTDIR)" "x"
35  JDK_HOME := $(shell dirname $(shell which java))/..
36else
37  JDK_HOME := $(BOOTDIR)
38endif
39
40isUnix := $(shell test -r c:/; echo $$?)
41
42ifeq "$(isUnix)" "1"
43    CPS := :
44else
45    CPS := ";"
46endif
47
48SRC_DIR    = src
49BUILD_DIR  = build
50OUTPUT_DIR = $(BUILD_DIR)/classes
51
52# gnumake 3.78.1 does not accept the *s,
53# so use the shell to expand them
54ALLFILES := $(patsubst %,$(SRC_DIR)/%,$(FILELIST))
55ALLFILES := $(shell /bin/ls $(ALLFILES))
56
57JAVAC = $(JDK_HOME)/bin/javac
58JAR = $(JDK_HOME)/bin/jar
59
60# Tagging it on because there's no reason not to run it
61all: logc.jar
62
63logc.jar: filelist manifest.mf
64	@mkdir -p $(OUTPUT_DIR)
65	$(JAVAC) -source 1.5 -deprecation -sourcepath $(SRC_DIR) -d $(OUTPUT_DIR) @filelist
66	$(JAR) cvfm logc.jar manifest.mf -C $(OUTPUT_DIR) com
67
68.PHONY: filelist
69filelist: $(ALLFILES)
70	@rm -f $@
71	@echo $(ALLFILES) > $@
72
73clean::
74	rm -rf filelist logc.jar
75	rm -rf $(BUILD_DIR)
76