jdk/make/launchers/Makefile.launcher
author lana
Tue, 13 Aug 2013 18:34:06 -0700
changeset 19494 684292d0e03a
parent 14994 a544909d1d1c
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
11826
8b378b0ae8fa 7041249: Remove apt tool and API from the JDK
darcy
parents: 5506
diff changeset
     2
# Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4116
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4116
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4116
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4116
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4116
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Makefile for building simple launchers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
12427
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12280
diff changeset
    30
PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS=1
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12280
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
BUILDDIR = ..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
PACKAGE = launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
PRODUCT = sun
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
include $(BUILDDIR)/common/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# The PROGRAM and MAIN_CLASS must be defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
ifndef PROGRAM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
  build: no_program
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  no_program:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
	$(ECHO) "No PROGRAM name defined"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
	exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
ifndef MAIN_CLASS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
  build: no_main
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  no_main:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
	$(ECHO) "No MAIN_CLASS name defined"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
	exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
# Some tools need the wildcard expansion option
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
ifeq ($(PROGRAM),javac)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
  MAIN_JAVA_ARGS += -J-Xss4m -J-ea:com.sun.tools...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
ifeq ($(PROGRAM),javadoc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
ifeq ($(PROGRAM),javap)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
endif
14994
a544909d1d1c 8003562: Provide a CLI tool to analyze class dependencies
mchung
parents: 12548
diff changeset
    65
ifeq ($(PROGRAM),jdeps)
a544909d1d1c 8003562: Provide a CLI tool to analyze class dependencies
mchung
parents: 12548
diff changeset
    66
  WILDCARDS=true
a544909d1d1c 8003562: Provide a CLI tool to analyze class dependencies
mchung
parents: 12548
diff changeset
    67
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
a544909d1d1c 8003562: Provide a CLI tool to analyze class dependencies
mchung
parents: 12548
diff changeset
    68
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
ifeq ($(PROGRAM),javah)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
ifeq ($(PROGRAM),serialver)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
# GUI tools need X11
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
ifeq ($(PROGRAM),appletviewer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  GUI_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
ifeq ($(PROGRAM),policytool)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
  GUI_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
# SA tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
ifeq ($(PROGRAM),jstack)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
  SA_TOOL=true
12548
386de6da1ff0 7163524: Add SecTaskAccess attribute to jstack [macosx]
sla
parents: 12427
diff changeset
    88
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
ifeq ($(PROGRAM),jsadebugd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
diff changeset
    92
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
ifeq ($(PROGRAM),jinfo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
diff changeset
    96
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
ifeq ($(PROGRAM),jmap)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
diff changeset
   100
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
# special idlj launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
ifeq ($(PROGRAM),orbd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
ifeq ($(PROGRAM),servertool)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
ifeq ($(PROGRAM),tnameserv)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
# idlj itself only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
ifeq ($(PROGRAM),idlj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
  ifndef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    FILES_c = $(SHARE_SRC)/native/bin/$(PROGRAM).c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
# rmic only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
ifeq ($(PROGRAM),rmic)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
  ifdef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    FILES_c = $(SHARE_SRC)/native/bin/$(PROGRAM).c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
# IDLJ_TOOL only uses different source files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
ifeq ($(IDLJ_TOOL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
  ifdef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    FILES_c = $(SHARE_SRC)/native/bin/idlj.c  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
# jdb only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
ifeq ($(PROGRAM),jdb)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
  # Override the default APP_CLASSPATH to pick up sa-jdi.jar also.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
  #   Default is defined in src/[solaris,windows]/bin/java_md.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
  #   PROGRAM, JAVA_ARGS, and APP_CLASSPATH are used in src/share/bin/java.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
  #   SA is currently not available on windows (for any ARCH), or linux-ia64:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
  ifneq ($(ARCH), ia64)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   146
    JDB_CLASSPATH = { "/lib/tools.jar", "/lib/sa-jdi.jar", "/classes" }
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   147
    OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JDB_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
# jconsole only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
ifeq ($(PROGRAM),jconsole)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   153
  JCONSOLE_CLASSPATH = { "/lib/jconsole.jar", "/lib/tools.jar", "/classes" }
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   154
  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JCONSOLE_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
  ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    OTHER_CPPFLAGS += -DJAVAW
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    LDLIBS_COMMON  += user32.lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    MAIN_JAVA_ARGS += -J-Djconsole.showOutputViewer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
# GUI tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
ifeq ($(GUI_TOOL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
  ifneq ($(PLATFORM), windows)
12280
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   165
    ifneq ($(PLATFORM), macosx)
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   166
      # Anything with a GUI needs X11 to be linked in.
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   167
      OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   168
    endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
# SA tools need special app classpath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
ifeq ($(SA_TOOL),true)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   174
  SA_CLASSPATH = { "/lib/tools.jar", "/lib/sa-jdi.jar", "/classes" }
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   175
  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(SA_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
# Wildcards
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
ifeq ($(WILDCARDS),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
  OTHER_CPPFLAGS += -DEXPAND_CLASSPATH_WILDCARDS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
# Always tell native code what the main class is
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   184
OTHER_CPPFLAGS += -DMAIN_CLASS='"$(MAIN_CLASS)"'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
# Construct initializer for initial arguments to java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
ALL_ARGS = -J-ms8m $(MAIN_JAVA_ARGS) $(MAIN_CLASS) $(MAIN_ARGS)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   188
JAVA_ARGS = { $(ALL_ARGS:%="%",)  }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
# Always report launcher info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
build: launcher_info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
# Print info macro
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
define printLauncherSetting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
if [ "$2" != "" ] ; then $(PRINTF) "%-16s %s\n" "$1:" "$2"; fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
# Report basic information about this launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
launcher_info:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
	@$(call printLauncherSetting,LAUNCHER,$(PROGRAM))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
	@$(call printLauncherSetting,MAIN_CLASS,$(MAIN_CLASS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
	@$(call printLauncherSetting,MAIN_JAVA_ARGS,$(MAIN_JAVA_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
	@$(call printLauncherSetting,MAIN_ARGS,$(MAIN_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
	@$(call printLauncherSetting,ALL_ARGS,$(ALL_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
# Rules for building a program
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
include $(BUILDDIR)/common/Program.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212