author | lana |
Wed, 17 Jul 2013 10:40:53 -0700 | |
changeset 18920 | 5111c1aa3ecd |
parent 16253 | 35bb4f53b5e2 |
child 21865 | e15829766c38 |
permissions | -rw-r--r-- |
16147 | 1 |
# |
16151 | 2 |
# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
16147 | 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. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
# |
|
27 |
# On Solaris, the standard 'make' utility will not work with these makefiles. |
|
28 |
# This little rule is only understood by Solaris make, and is harmless |
|
29 |
# when seen by the GNU make tool. If using Solaris make, this causes the |
|
30 |
# make command to fail. |
|
31 |
# |
|
32 |
SUN_MAKE_TEST:sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33 |
|
33 |
||
34 |
||
35 |
# Default target and expected 'do everything' target |
|
16253
35bb4f53b5e2
8008447: Tweaks to make all NEWBUILD=false round 3
jlaskey
parents:
16247
diff
changeset
|
36 |
all: |
35bb4f53b5e2
8008447: Tweaks to make all NEWBUILD=false round 3
jlaskey
parents:
16247
diff
changeset
|
37 |
echo Nashorn can only be built with NEWBUILD=true |
16147 | 38 |
|
39 |
# Standard make clobber target |
|
16253
35bb4f53b5e2
8008447: Tweaks to make all NEWBUILD=false round 3
jlaskey
parents:
16247
diff
changeset
|
40 |
clobber: |
16147 | 41 |
|
42 |
#------------------------------------------------------------------- |
|
43 |
# |
|
44 |
# Targets for Oracle's internal JPRT build system |
|
45 |
||
46 |
CD = cd |
|
47 |
ZIP = zip |
|
48 |
||
49 |
JPRT_ARCHIVE_BUNDLE=$(ABS_OUTPUTDIR)/$(JPRT_BUILD_FLAVOR)-bundle.zip |
|
50 |
||
51 |
jprt_build_product jprt_build_debug jprt_build_fastdebug: all |
|
52 |
( $(CD) $(OUTPUTDIR) && \ |
|
53 |
$(ZIP) -q -r $(JPRT_ARCHIVE_BUNDLE) build dist ) |
|
54 |
||
55 |
#------------------------------------------------------------------- |
|
56 |
||
57 |
# Declare these phony (not filenames) |
|
58 |
.PHONY: $(ANT_TARGETS) all clobber \ |
|
59 |
jprt_build_product jprt_build_debug jprt_build_fastdebug |