comparison make/linux/makefiles/top.make @ 10408:836a62f43af9

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 19 Jun 2013 10:45:56 +0200
parents e522a00b91aa f2110083203d
children d8041d695d19
comparison
equal deleted inserted replaced
10086:e0fb8a213650 10408:836a62f43af9
1 # 1 #
2 # Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 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 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
78 78
79 default: vm_build_preliminaries the_vm 79 default: vm_build_preliminaries the_vm
80 @echo All done. 80 @echo All done.
81 81
82 # This is an explicit dependency for the sake of parallel makes. 82 # This is an explicit dependency for the sake of parallel makes.
83 vm_build_preliminaries: checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff sa_stuff 83 vm_build_preliminaries: checks $(Cached_plat) $(AD_Files_If_Required) trace_stuff jvmti_stuff sa_stuff
84 @# We need a null action here, so implicit rules don't get consulted. 84 @# We need a null action here, so implicit rules don't get consulted.
85 85
86 $(Cached_plat): $(Plat_File) 86 $(Cached_plat): $(Plat_File)
87 $(CDG) cp $(Plat_File) $(Cached_plat) 87 $(CDG) cp $(Plat_File) $(Cached_plat)
88 88
91 @$(MAKE) -f adlc.make $(MFLAGS-adjusted) 91 @$(MAKE) -f adlc.make $(MFLAGS-adjusted)
92 92
93 # generate JVMTI files from the spec 93 # generate JVMTI files from the spec
94 jvmti_stuff: $(Cached_plat) $(adjust-mflags) 94 jvmti_stuff: $(Cached_plat) $(adjust-mflags)
95 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted) 95 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
96
97 # generate trace files
98 trace_stuff: jvmti_stuff $(Cached_plat) $(adjust-mflags)
99 @$(MAKE) -f trace.make $(MFLAGS-adjusted)
96 100
97 # generate SA jar files and native header 101 # generate SA jar files and native header
98 sa_stuff: 102 sa_stuff:
99 @$(MAKE) -f sa.make $(MFLAGS-adjusted) 103 @$(MAKE) -f sa.make $(MFLAGS-adjusted)
100 104