jdk/make/launchers/Makefile.launcher
author michaelm
Tue, 06 Mar 2012 20:34:38 +0000
changeset 12047 320a714614e9
parent 11826 8b378b0ae8fa
child 12280 7e17a63793ca
permissions -rw-r--r--
7113349: Initial changeset for Macosx port to jdk Reviewed-by: jjh, alanb, dholmes, anthony, ohrstrom, ksrini, jrose, weijun, smarks Contributed-by: Alan Bateman <alan.bateman@oracle.com>, Alexander Potochkin <alexander.potochkin@oracle.com>, Alexander Zuev <alexander.zuev@oracle.com>, Andrew Brygin <andrew.brygin@oracle.com>, Artem Ananiev <artem.ananiev@oracle.com>, Alex Strange <astrange@apple.com>, Bino George <bino@apple.com>, Christine Lu <christine.lu@oracle.com>, David Katleman <david.katleman@oracle.com>, David Durrence <david_durrence@apple.com>, Dmitry Cherepanov <dmitry.cherepanov@oracle.com>, Greg Lewis <glewis@eyesbeyond.com>, Kevin Miller <kevin_m_miller@apple.com>, Kurt Miller <kurt@intricatesoftware.com>, Landon Fuller <landonf@plausiblelabs.com>, Leonid Romanov <leonid.romanov@oracle.com>, Loefty Walkowiak <loefty@apple.com>, Mark Reinhold <mark.reinhold@oracle.com>, Naoto Sato <naoto.sato@oracle.com>, Philip Race <philip.race@oracle.com>, Roger Hoover <rhoover@apple.com>, Scott Kovatch <scott.kovatch@oracle.com>, Sergey ByloKhov <sergey.bylokhov@oracle.com>, Mike Swingler <swingler@apple.com>, Tomas Hurka <tomas.hurka@oracle.com>
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
BUILDDIR = ..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
PACKAGE = launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
PRODUCT = sun
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
include $(BUILDDIR)/common/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# The PROGRAM and MAIN_CLASS must be defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
ifndef PROGRAM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
  build: no_program
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
  no_program:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
	$(ECHO) "No PROGRAM name defined"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
	exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
ifndef MAIN_CLASS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
  build: no_main
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
  no_main:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
	$(ECHO) "No MAIN_CLASS name defined"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
	exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
# Some tools need the wildcard expansion option
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
ifeq ($(PROGRAM),javac)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
  MAIN_JAVA_ARGS += -J-Xss4m -J-ea:com.sun.tools...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
ifeq ($(PROGRAM),javadoc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
ifeq ($(PROGRAM),javap)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
ifeq ($(PROGRAM),javah)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
ifeq ($(PROGRAM),serialver)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
# GUI tools need X11
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
ifeq ($(PROGRAM),appletviewer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
  GUI_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
ifeq ($(PROGRAM),policytool)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
  GUI_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
# SA tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
ifeq ($(PROGRAM),jstack)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
  SA_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
ifeq ($(PROGRAM),jsadebugd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
diff changeset
    85
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
ifeq ($(PROGRAM),jinfo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
diff changeset
    89
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
ifeq ($(PROGRAM),jmap)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
diff changeset
    93
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
# special idlj launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
ifeq ($(PROGRAM),orbd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
ifeq ($(PROGRAM),servertool)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
ifeq ($(PROGRAM),tnameserv)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
# idlj itself only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
ifeq ($(PROGRAM),idlj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
  ifndef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    FILES_c = $(SHARE_SRC)/native/bin/$(PROGRAM).c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
# rmic only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
ifeq ($(PROGRAM),rmic)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
  ifdef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    FILES_c = $(SHARE_SRC)/native/bin/$(PROGRAM).c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
# IDLJ_TOOL only uses different source files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
ifeq ($(IDLJ_TOOL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
  ifdef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    FILES_c = $(SHARE_SRC)/native/bin/idlj.c  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
# jdb only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
ifeq ($(PROGRAM),jdb)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
  # Override the default APP_CLASSPATH to pick up sa-jdi.jar also.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
  #   Default is defined in src/[solaris,windows]/bin/java_md.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
  #   PROGRAM, JAVA_ARGS, and APP_CLASSPATH are used in src/share/bin/java.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
  #   SA is currently not available on windows (for any ARCH), or linux-ia64:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  ifneq ($(ARCH), ia64)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   139
    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
   140
    OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JDB_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
# jconsole only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
ifeq ($(PROGRAM),jconsole)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   146
  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
   147
  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JCONSOLE_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
  ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    OTHER_CPPFLAGS += -DJAVAW
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    LDLIBS_COMMON  += user32.lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    MAIN_JAVA_ARGS += -J-Djconsole.showOutputViewer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
# GUI tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
ifeq ($(GUI_TOOL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
  ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    # Anything with a GUI needs X11 to be linked in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
# SA tools need special app classpath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
ifeq ($(SA_TOOL),true)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   165
  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
   166
  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(SA_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
# Wildcards
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
ifeq ($(WILDCARDS),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
  OTHER_CPPFLAGS += -DEXPAND_CLASSPATH_WILDCARDS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
# 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
   175
OTHER_CPPFLAGS += -DMAIN_CLASS='"$(MAIN_CLASS)"'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
# Construct initializer for initial arguments to java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
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
   179
JAVA_ARGS = { $(ALL_ARGS:%="%",)  }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
# Always report launcher info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
build: launcher_info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
# Print info macro
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
define printLauncherSetting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
if [ "$2" != "" ] ; then $(PRINTF) "%-16s %s\n" "$1:" "$2"; fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
# Report basic information about this launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
launcher_info:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
	@$(call printLauncherSetting,LAUNCHER,$(PROGRAM))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
	@$(call printLauncherSetting,MAIN_CLASS,$(MAIN_CLASS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
	@$(call printLauncherSetting,MAIN_JAVA_ARGS,$(MAIN_JAVA_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
	@$(call printLauncherSetting,MAIN_ARGS,$(MAIN_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
	@$(call printLauncherSetting,ALL_ARGS,$(ALL_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
# Rules for building a program
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
include $(BUILDDIR)/common/Program.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203