make/linux/makefiles/launcher.make

Wed, 09 Apr 2008 14:22:48 -0400

author
kamg
date
Wed, 09 Apr 2008 14:22:48 -0400
changeset 526
a294fd0c4b38
parent 435
build/linux/makefiles/launcher.make@a61af66fc99e
child 631
d1605aabd0a1
permissions
-rw-r--r--

6583644: Move all managed/SCCS files out of 'build' into 'make' directory
Summary: Moved makefiles out of build and build/closed into make/
Reviewed-by: kvn, ohair

duke@435 1 #
duke@435 2 # Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
duke@435 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 # have any questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Rules to build gamma launcher, used by vm.make
duke@435 26
duke@435 27 # gamma[_g]: launcher
duke@435 28 LAUNCHER = gamma$(G_SUFFIX)
duke@435 29
duke@435 30 LAUNCHERDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher
duke@435 31 LAUNCHERFLAGS = $(ARCHFLAG) \
duke@435 32 -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \
duke@435 33 -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \
duke@435 34 -DARCH=\"$(LIBARCH)\" \
duke@435 35 -DGAMMA \
duke@435 36 -DLAUNCHER_TYPE=\"gamma\" \
duke@435 37 -DLINK_INTO_$(LINK_INTO)
duke@435 38
duke@435 39 ifeq ($(LINK_INTO),AOUT)
duke@435 40 LAUNCHER.o = launcher.o $(JVM_OBJ_FILES)
duke@435 41 LAUNCHER_MAPFILE = mapfile_reorder
duke@435 42 LFLAGS_LAUNCHER$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LAUNCHER_MAPFILE))
duke@435 43 LFLAGS_LAUNCHER += $(SONAMEFLAG:SONAME=$(LIBJVM)) $(STATIC_LIBGCC)
duke@435 44 LIBS_LAUNCHER += $(STATIC_STDCXX) $(LIBS)
duke@435 45 else
duke@435 46 LAUNCHER.o = launcher.o
duke@435 47 LFLAGS_LAUNCHER += -L `pwd`
duke@435 48 LIBS_LAUNCHER += -l$(JVM) $(LIBS)
duke@435 49 endif
duke@435 50
duke@435 51 LINK_LAUNCHER = $(LINK.c)
duke@435 52
duke@435 53 LINK_LAUNCHER/PRE_HOOK = $(LINK_LIB.CC/PRE_HOOK)
duke@435 54 LINK_LAUNCHER/POST_HOOK = $(LINK_LIB.CC/POST_HOOK)
duke@435 55
duke@435 56 launcher.o: launcher.c $(LAUNCHERDIR)/java.c $(LAUNCHERDIR)/java_md.c
duke@435 57 $(CC) -g -c -o $@ launcher.c $(LAUNCHERFLAGS) $(CPPFLAGS)
duke@435 58
duke@435 59 launcher.c:
duke@435 60 @echo Generating $@
duke@435 61 $(QUIETLY) { \
duke@435 62 echo '#define debug launcher_debug'; \
duke@435 63 echo '#include "java.c"'; \
duke@435 64 echo '#include "java_md.c"'; \
duke@435 65 } > $@
duke@435 66
duke@435 67 $(LAUNCHER): $(LAUNCHER.o) $(LIBJVM) $(LAUNCHER_MAPFILE)
duke@435 68 $(QUIETLY) { \
duke@435 69 echo Linking launcher...; \
duke@435 70 $(LINK_LAUNCHER/PRE_HOOK) \
duke@435 71 $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER); \
duke@435 72 $(LINK_LAUNCHER/POST_HOOK) \
duke@435 73 }

mercurial