jdk/make/launchers/Makefile.launcher
author jiangli
Thu, 26 Jul 2012 17:24:31 -0400
changeset 13311 71effe5a1069
parent 12548 386de6da1ff0
child 14994 a544909d1d1c
permissions -rw-r--r--
7187046: Crash in ClassFileParser on solaris-ia32 during RetransformClasses. Summary: Lower compiler optimization level when compiling jvmtiClassFileReconstituter.cpp as a workaround for the solaris x86 5.10 cc bug. Reviewed-by: kvn, coleenp
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
ifeq ($(PROGRAM),javah)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
  NEVER_ACT_AS_SERVER_CLASS_MACHINE=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
ifeq ($(PROGRAM),serialver)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
# GUI tools need X11
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
ifeq ($(PROGRAM),appletviewer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
  GUI_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
ifeq ($(PROGRAM),policytool)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
  GUI_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
# SA tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
ifeq ($(PROGRAM),jstack)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
  SA_TOOL=true
12548
386de6da1ff0 7163524: Add SecTaskAccess attribute to jstack [macosx]
sla
parents: 12427
diff changeset
    84
  INFO_PLIST_FILE=Info-privileged.plist
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
ifeq ($(PROGRAM),jsadebugd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
  SA_TOOL=true
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11826
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),jinfo)
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),jmap)
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
# special idlj launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
ifeq ($(PROGRAM),orbd)
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),servertool)
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
ifeq ($(PROGRAM),tnameserv)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
  IDLJ_TOOL=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
# idlj itself only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
ifeq ($(PROGRAM),idlj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
  ifndef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    FILES_c = $(SHARE_SRC)/native/bin/$(PROGRAM).c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
# rmic only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
ifeq ($(PROGRAM),rmic)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
  ifdef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    FILES_c = $(SHARE_SRC)/native/bin/$(PROGRAM).c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
  WILDCARDS=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
# IDLJ_TOOL only uses different source files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
ifeq ($(IDLJ_TOOL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
  ifdef STANDALONE_CORBA_WS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    FILES_c = $(SHARE_SRC)/native/bin/idlj.c  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
	      $(SHARE_SRC)/native/bin/utility.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
# jdb only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
ifeq ($(PROGRAM),jdb)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
  # Override the default APP_CLASSPATH to pick up sa-jdi.jar also.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  #   Default is defined in src/[solaris,windows]/bin/java_md.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
  #   PROGRAM, JAVA_ARGS, and APP_CLASSPATH are used in src/share/bin/java.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
  #   SA is currently not available on windows (for any ARCH), or linux-ia64:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
  ifneq ($(ARCH), ia64)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   142
    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
   143
    OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JDB_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
# jconsole only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
ifeq ($(PROGRAM),jconsole)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   149
  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
   150
  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JCONSOLE_CLASSPATH)'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
  ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    OTHER_CPPFLAGS += -DJAVAW
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    LDLIBS_COMMON  += user32.lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    MAIN_JAVA_ARGS += -J-Djconsole.showOutputViewer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
# GUI tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
ifeq ($(GUI_TOOL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
  ifneq ($(PLATFORM), windows)
12280
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   161
    ifneq ($(PLATFORM), macosx)
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   162
      # 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
   163
      OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
7e17a63793ca 7150516: [macosx] appletviewer shouldn't link against libX11 on the Mac
anthony
parents: 12047
diff changeset
   164
    endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
# SA tools need special app classpath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
ifeq ($(SA_TOOL),true)
4116
54b55d640d9a 6888709: Change use of -DX=\""Y\"" to -DX='"Y"', consistently for all platforms
ohair
parents: 2
diff changeset
   170
  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
   171
  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(SA_CLASSPATH)'
2
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
# Wildcards
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
ifeq ($(WILDCARDS),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
  OTHER_CPPFLAGS += -DEXPAND_CLASSPATH_WILDCARDS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
# 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
   180
OTHER_CPPFLAGS += -DMAIN_CLASS='"$(MAIN_CLASS)"'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
# Construct initializer for initial arguments to java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
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
   184
JAVA_ARGS = { $(ALL_ARGS:%="%",)  }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
# Always report launcher info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
build: launcher_info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
# Print info macro
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
define printLauncherSetting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
if [ "$2" != "" ] ; then $(PRINTF) "%-16s %s\n" "$1:" "$2"; fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
# Report basic information about this launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
launcher_info:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
	@$(call printLauncherSetting,LAUNCHER,$(PROGRAM))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
	@$(call printLauncherSetting,MAIN_CLASS,$(MAIN_CLASS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
	@$(call printLauncherSetting,MAIN_JAVA_ARGS,$(MAIN_JAVA_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
	@$(call printLauncherSetting,MAIN_ARGS,$(MAIN_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
	@$(call printLauncherSetting,ALL_ARGS,$(ALL_ARGS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
# Rules for building a program
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
include $(BUILDDIR)/common/Program.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208