duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 1 | # |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 2 | # Copyright (c) 1995, 2012, Oracle and/or its affiliates. All rights reserved. |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 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 |
ohair | 2283b9d | 2010-05-25 15:58:33 -0700 | [diff] [blame] | 7 | # published by the Free Software Foundation. Oracle designates this |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 8 | # particular file as subject to the "Classpath" exception as provided |
ohair | 2283b9d | 2010-05-25 15:58:33 -0700 | [diff] [blame] | 9 | # by Oracle in the LICENSE file that accompanied this code. |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 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 | # |
ohair | 2283b9d | 2010-05-25 15:58:33 -0700 | [diff] [blame] | 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. |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 24 | # |
| 25 | |
| 26 | # |
| 27 | # Generic makefile for building executables. |
| 28 | # |
| 29 | |
| 30 | # WARNING: This file is shared with other workspaces. |
| 31 | # So when it includes other files, it must use JDK_TOPDIR. |
| 32 | # |
| 33 | |
| 34 | # |
| 35 | # If building programs, use a normal compile approach |
| 36 | # |
| 37 | ifeq ($(COMPILE_APPROACH),batch) |
| 38 | override COMPILE_APPROACH = normal |
| 39 | endif |
| 40 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 41 | # set the platform specific directory for macosx, also this platform shares |
| 42 | # substantial family ties with its siblings (solaris and linux), thus we add |
| 43 | # solaris src path to its compilation dependencies. |
| 44 | ifeq ($(PLATFORM), macosx) |
| 45 | LAUNCHER_PLATFORM_SRC = $(BUILDDIR)/../src/macosx |
| 46 | LAUNCHER_SOLARIS_PLATFORM_SRC = $(BUILDDIR)/../src/solaris |
| 47 | else |
| 48 | LAUNCHER_PLATFORM_SRC = $(PLATFORM_SRC) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 49 | endif |
| 50 | |
| 51 | ifndef LAUNCHER_SHARE_SRC |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 52 | LAUNCHER_SHARE_SRC = $(SHARE_SRC) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 53 | endif |
| 54 | |
| 55 | ACTUAL_PROGRAM_NAME = $(PROGRAM)$(EXE_SUFFIX) |
| 56 | ACTUAL_PROGRAM_DIR = $(BINDIR) |
| 57 | ACTUAL_PROGRAM = $(ACTUAL_PROGRAM_DIR)/$(ACTUAL_PROGRAM_NAME) |
| 58 | |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 59 | # Make sure the default rule is all |
| 60 | program_default_rule: all |
| 61 | |
| 62 | program: $(ACTUAL_PROGRAM) |
| 63 | |
dholmes | 5e4d33b | 2011-05-04 22:16:28 -0400 | [diff] [blame] | 64 | # Work-around for missing processor specific mapfiles |
| 65 | ifndef CROSS_COMPILE_ARCH |
| 66 | # reuse the mapfiles in the launcher's directory, the same should |
| 67 | # be applicable to the tool launchers as well. |
| 68 | FILES_m = $(BUILDDIR)/java/main/java/mapfile-$(ARCH) |
| 69 | include $(BUILDDIR)/common/Mapfile-vers.gmk |
| 70 | endif |
ksrini | 896eddf | 2011-04-06 19:31:30 -0700 | [diff] [blame] | 71 | |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 72 | include $(JDK_TOPDIR)/make/common/Rules.gmk |
| 73 | |
| 74 | ifdef NEVER_ACT_AS_SERVER_CLASS_MACHINE |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 75 | OTHER_CPPFLAGS += -DNEVER_ACT_AS_SERVER_CLASS_MACHINE |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 76 | endif |
| 77 | |
| 78 | # |
| 79 | # Create a dependency on libjli (Java Launcher Infrastructure) |
| 80 | # |
| 81 | # On UNIX, this is a relative dependency using $ORIGIN. Unfortunately, to |
| 82 | # do this reliably on Linux takes a different syntax than Solaris. |
| 83 | # |
| 84 | # On Windows, this is done by using the same directory as the executable |
| 85 | # itself, as with all the Windows libraries. |
| 86 | # |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 87 | ifeq ($(PLATFORM), macosx) |
| 88 | ifneq ($(ARCH), universal) |
| 89 | LDFLAGS += -Wl,-all_load |
| 90 | endif |
| 91 | LDFLAGS += $(OUTPUTDIR)/tmp/java/jli/$(OBJDIRNAME)/static/libjli.a |
| 92 | |
| 93 | ifeq ($(SYSTEM_ZLIB),true) |
| 94 | OTHER_LDLIBS += -lz |
| 95 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 96 | endif |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 97 | |
| 98 | ifneq (,$(findstring $(PLATFORM), linux solaris)) # UNIX systems |
| 99 | LDFLAGS += -L $(LIBDIR)/$(LIBARCH)/jli |
| 100 | OTHER_LDLIBS += -ljli |
| 101 | ifeq ($(PLATFORM), solaris) |
| 102 | ifeq ($(ARCH_DATA_MODEL), 32) |
| 103 | LDFLAGS += -R \$$ORIGIN/../lib/$(LIBARCH)/jli |
| 104 | LDFLAGS += -R \$$ORIGIN/../jre/lib/$(LIBARCH)/jli |
| 105 | else |
| 106 | LDFLAGS += -R \$$ORIGIN/../../lib/$(LIBARCH)/jli |
| 107 | LDFLAGS += -R \$$ORIGIN/../../jre/lib/$(LIBARCH)/jli |
| 108 | endif |
| 109 | endif |
| 110 | ifeq ($(PLATFORM), linux) |
| 111 | LDFLAGS += $(LDFLAG_Z_ORIGIN) |
| 112 | LDFLAGS += -Wl,--allow-shlib-undefined |
| 113 | LDFLAGS += -Wl,-rpath -Wl,\$$ORIGIN/../lib/$(LIBARCH)/jli |
| 114 | LDFLAGS += -Wl,-rpath -Wl,\$$ORIGIN/../jre/lib/$(LIBARCH)/jli |
| 115 | endif |
| 116 | endif |
| 117 | |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 118 | ifeq ($(PLATFORM), windows) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 119 | JLI_LCF = $(OUTPUTDIR)/tmp/java/jli/$(OBJDIRNAME)/jli.lcf |
| 120 | ifdef STATIC_JLI |
| 121 | LDFLAGS += -libpath:$(OUTPUTDIR)/tmp/java/jli/$(OBJDIRNAME)/static |
| 122 | else |
| 123 | LDFLAGS += -libpath:$(OUTPUTDIR)/tmp/java/jli/$(OBJDIRNAME) |
| 124 | endif |
| 125 | OTHER_LDLIBS += jli.lib |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 126 | endif |
| 127 | |
| 128 | # |
| 129 | # Launcher specific files. |
| 130 | # |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 131 | FILES_o = $(OBJDIR)/main.$(OBJECT_SUFFIX) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 132 | |
mchung | 3baa2d6 | 2010-01-07 08:14:48 -0800 | [diff] [blame] | 133 | $(ACTUAL_PROGRAM):: classes $(INIT) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 134 | |
| 135 | # |
| 136 | # Windows only |
| 137 | # |
| 138 | ifeq ($(PLATFORM), windows) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 139 | # JDK name required here |
| 140 | RC_FLAGS += /D "JDK_FNAME=$(PROGRAM)$(EXE_SUFFIX)" \ |
| 141 | /D "JDK_INTERNAL_NAME=$(PROGRAM)" \ |
| 142 | /D "JDK_FTYPE=0x1L" |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 143 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 144 | $(OBJDIR)/$(PROGRAM).res: $(VERSIONINFO_RESOURCE) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 145 | @$(prep-target) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 146 | ifndef LOCAL_RESOURCE_FILE |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 147 | $(RC) $(RC_FLAGS) $(CC_OBJECT_OUTPUT_FLAG)$(@) $(VERSIONINFO_RESOURCE) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 148 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 149 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 150 | $(OBJDIR)/$(PROGRAM).lcf: $(OBJDIR)/$(PROGRAM).res $(FILES_o) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 151 | @$(prep-target) |
| 152 | @$(ECHO) $(FILES_o) > $@ |
| 153 | ifndef LOCAL_RESOURCE_FILE |
| 154 | @$(ECHO) $(OBJDIR)/$(PROGRAM).res >> $@ |
| 155 | endif |
| 156 | @$(ECHO) setargv.obj >> $@ |
| 157 | @$(ECHO) Created $@ |
| 158 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 159 | $(ACTUAL_PROGRAM):: $(OBJDIR)/$(PROGRAM)$(EXE_SUFFIX) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 160 | @$(install-file) |
| 161 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 162 | ifeq ($(ARCH_DATA_MODEL), 32) |
| 163 | STACK_SIZE=327680 |
| 164 | else |
| 165 | # We need more Stack for Windows 64bit |
| 166 | STACK_SIZE=1048576 |
| 167 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 168 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 169 | IMVERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VER).$(COOKED_BUILD_NUMBER) |
| 170 | $(OBJDIR)/$(PROGRAM).exe.manifest: $(JDK_TOPDIR)/src/windows/resource/java.manifest |
prr | 1a77cbc | 2011-01-19 17:07:51 -0800 | [diff] [blame] | 171 | @$(prep-target) |
| 172 | $(SED) 's%IMVERSION%$(IMVERSION)%g;s%PROGRAM%$(PROGRAM)%g' $< > $@ |
| 173 | |
dcubed | b896fcf | 2012-04-03 12:57:47 -0700 | [diff] [blame^] | 174 | ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
| 175 | MAP_OPTION="-map:$(OBJDIR)/$(PROGRAM).map" |
| 176 | endif |
| 177 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 178 | # We used a hand-crafted manifest file for all executables. |
| 179 | # It is tweaked to embed the build number and executable name. |
| 180 | # Use ";#2" for .dll and ";#1" for .exe in the MT command below: |
| 181 | $(OBJDIR)/$(PROGRAM)$(EXE_SUFFIX):: $(OBJDIR)/$(PROGRAM).lcf $(FILES_o) $(JLI_LCF) $(OBJDIR)/$(PROGRAM).exe.manifest |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 182 | @$(prep-target) |
| 183 | @set -- $?; \ |
| 184 | $(ECHO) Rebuilding $@ because of $$1 $$2 $$3 $$4 $$5 $$6 $${7:+...}; |
| 185 | $(LINK) -out:$@ /STACK:$(STACK_SIZE) \ |
dcubed | b896fcf | 2012-04-03 12:57:47 -0700 | [diff] [blame^] | 186 | $(MAP_OPTION) $(LFLAGS) $(LDFLAGS) \ |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 187 | @$(OBJDIR)/$(PROGRAM).lcf $(LDLIBS) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 188 | ifdef MT |
tbell | fc2a6fe | 2009-01-14 21:35:03 -0800 | [diff] [blame] | 189 | $(MT) /manifest $(OBJDIR)/$(PROGRAM).exe.manifest /outputresource:$@;#1 |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 190 | endif |
ohair | 67e0bbf | 2011-01-05 14:28:58 -0800 | [diff] [blame] | 191 | @$(call binary_file_verification,$@) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 192 | else |
| 193 | # |
| 194 | # Note that we have to link -lthread even when USE_PTHREADS is true. |
| 195 | # This is becuase checkForCorrectLibthread() croaks otherwise. |
| 196 | # |
| 197 | LIBTHREAD = -lthread |
| 198 | ifeq ($(USE_PTHREADS),true) |
| 199 | THREADLIBS = -lpthread $(LIBTHREAD) |
| 200 | else |
| 201 | THREADLIBS = $(LIBTHREAD) |
| 202 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 203 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 204 | ifeq ($(PLATFORM), macosx) |
| 205 | THREADLIBS = -pthread |
| 206 | # Needed for linking the various launchers |
| 207 | LDFLAGS += -framework Cocoa -framework Security \ |
| 208 | -framework ApplicationServices |
| 209 | OTHER_CPPFLAGS += -DPACKAGE_PATH='"$(PACKAGE_PATH)"' |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 210 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 211 | # Default Info.plist file for the command line tools. This gets overridden by |
| 212 | # some of the jvmstat tools so that they have task_for_pid() privileges |
| 213 | ifndef INFO_PLIST_FILE |
| 214 | INFO_PLIST_FILE = Info-cmdline.plist |
| 215 | endif |
| 216 | LDFLAGS += -sectcreate __TEXT __info_plist $(LAUNCHER_PLATFORM_SRC)/lib/$(INFO_PLIST_FILE) |
| 217 | else |
| 218 | INFO_PLIST_FILE= |
| 219 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 220 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 221 | # |
| 222 | # This rule only applies on unix. It supports quantify and its ilk. |
| 223 | # |
| 224 | $(ACTUAL_PROGRAM):: $(FILES_o) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 225 | @$(prep-target) |
| 226 | @set -- $?; \ |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 227 | $(ECHO) Rebuilding $@ because of $$1 $$2 $$3 $$4 $$5 $$6 $${7:+...}; |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 228 | @$(MKDIR) -p $(TEMPDIR) |
| 229 | $(LINK_PRE_CMD) $(CC) $(CC_OBJECT_OUTPUT_FLAG)$@ $(LDFLAGS) \ |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 230 | $(FILES_o) $(THREADLIBS) $(LDLIBS) |
| 231 | ifeq ($(findstring privileged, $(INFO_PLIST_FILE)), privileged) |
| 232 | -codesign -s openjdk_codesign $@ |
| 233 | endif |
ohair | 67e0bbf | 2011-01-05 14:28:58 -0800 | [diff] [blame] | 234 | @$(call binary_file_verification,$@) |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 235 | endif # PLATFORM |
| 236 | |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 237 | clean:: |
| 238 | ifeq ($(PLATFORM), windows) |
| 239 | $(RM) $(OBJDIR)/$(PROGRAM).rc |
| 240 | $(RM) $(OBJDIR)/$(PROGRAM).ico |
| 241 | $(RM) $(OBJDIR)/$(PROGRAM).lcf |
| 242 | $(RM) $(OBJDIR)/$(PROGRAM).map |
| 243 | $(RM) $(OBJDIR)/$(PROGRAM).exp |
| 244 | $(RM) $(OBJDIR)/$(PROGRAM).lib |
| 245 | $(RM) $(OBJDIR)/$(PROGRAM)$(EXE_SUFFIX) |
| 246 | $(RM) $(OBJDIR)/$(PROGRAM).ilk |
| 247 | $(RM) *.pdb |
| 248 | endif |
| 249 | |
| 250 | |
| 251 | clobber:: |
| 252 | $(RM) $(ACTUAL_PROGRAM) |
| 253 | |
| 254 | # |
| 255 | # Now include make dependencies (created during compilation, see Rules.gmk) |
| 256 | # |
| 257 | ifeq ($(INCREMENTAL_BUILD),true) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 258 | # Workaround: gnumake sometimes says files is empty when it shouldn't |
| 259 | # was: files := $(foreach file, $(wildcard */$(ARCH)/*.$(DEPEND_SUFFIX)), $(file)) |
| 260 | files := $(shell $(LS) $(OBJDIR)/*.$(DEPEND_SUFFIX) 2>/dev/null) |
| 261 | ifneq ($(strip $(files)),) |
| 262 | include $(files) |
| 263 | endif |
| 264 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 265 | |
| 266 | ifdef JAVA_ARGS |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 267 | OTHER_CPPFLAGS += -DJAVA_ARGS='$(JAVA_ARGS)' |
| 268 | OTHER_CPPFLAGS += -DLAUNCHER_NAME='"$(LAUNCHER_NAME)"' |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 269 | endif |
| 270 | |
| 271 | ifeq ($(PLATFORM), windows) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 272 | ifdef RELEASE |
| 273 | OTHER_CPPFLAGS += -DVERSION='"$(RELEASE)"' |
| 274 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 275 | endif |
| 276 | |
| 277 | |
| 278 | ifneq ($(PLATFORM), windows) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 279 | HAVE_GETHRTIME=true |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 280 | endif |
| 281 | |
| 282 | ifeq ($(HAVE_GETHRTIME),true) |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 283 | OTHER_CPPFLAGS += -DHAVE_GETHRTIME |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 284 | endif |
| 285 | |
| 286 | OTHER_INCLUDES += -I$(LAUNCHER_SHARE_SRC)/bin -I$(LAUNCHER_PLATFORM_SRC)/bin |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 287 | ifeq ($(PLATFORM), macosx) |
| 288 | OTHER_INCLUDES += -I$(LAUNCHER_SOLARIS_PLATFORM_SRC)/bin |
| 289 | ifneq ($(SYSTEM_ZLIB), true) |
| 290 | OTHER_INCLUDES += -I$(SHARE_SRC)/native/java/util/zip/zlib-1.1.3 |
| 291 | endif |
| 292 | else |
| 293 | OTHER_INCLUDES += -I$(SHARE_SRC)/native/java/util/zip/zlib-1.1.3 |
| 294 | endif |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 295 | |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 296 | OTHER_CPPFLAGS += -DPROGNAME='"$(PROGRAM)"' |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 297 | VERSION_DEFINES += -DFULL_VERSION='"$(FULL_VERSION)"' |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 298 | |
| 299 | VERSION_DEFINES += -DJDK_MAJOR_VERSION='"$(JDK_MAJOR_VERSION)"' \ |
michaelm | 5ac8c15 | 2012-03-06 20:34:38 +0000 | [diff] [blame] | 300 | -DJDK_MINOR_VERSION='"$(JDK_MINOR_VERSION)"' |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 301 | |
| 302 | |
| 303 | |
| 304 | $(OBJDIR)/main.$(OBJECT_SUFFIX): $(LAUNCHER_SHARE_SRC)/bin/main.c |
| 305 | @$(prep-target) |
| 306 | $(COMPILE.c) $(CC_OBJECT_OUTPUT_FLAG)$(OBJDIR)/main.$(OBJECT_SUFFIX) \ |
| 307 | $(VERSION_DEFINES) $< |
| 308 | |
| 309 | # |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 310 | # Default dependencies |
| 311 | # |
| 312 | |
| 313 | all: build |
| 314 | |
| 315 | build: program |
| 316 | |
| 317 | debug: |
| 318 | $(MAKE) VARIANT=DBG build |
| 319 | |
| 320 | fastdebug: |
| 321 | $(MAKE) VARIANT=DBG FASTDEBUG=true build |
| 322 | |
| 323 | .PHONY: all build program clean clobber debug fastdebug |