jdk/make/common/Demo.gmk
author kvn
Wed, 05 Mar 2008 11:33:31 -0800
changeset 210 6da234892f4a
parent 2 90ce3da70b43
child 916 867515b155b5
permissions -rw-r--r--
6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation Summary: In Parse::do_if() 'c' (CmpNode) node may be changed during BoolNode transformation so 'c' may became dead but the node is referenced later in the code. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# Copyright 2004-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
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
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# JDK Demo building jar file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
  
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# Some names are defined with LIBRARY inside the Defs.gmk file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
LIBRARY=$(DEMONAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
OBJDIR=$(TEMPDIR)/$(DEMONAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# Input:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#    DEMONAME           - name of the demo
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#    DEMO_ROOT          - path to root of all demo files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#    DEMO_DESTDIR       - path to final demo destination directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# Optional Input:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#    DEMO_SRCDIR        - path to source if different from DEMO_ROOT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#    DEMO_PSRCDIR       - path to additional platform specific source
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#    DEMO_PKGDIR        - sub directory of sources we want
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#    DEMO_TOPFILES      - names of top-level files relative to DEMO_ROOT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#    DEMO_MAINCLASS     - name of the main class for the jar manifest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#    DEMO_NATIVECLASS   - name of the class with native methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#    DEMO_DESCRIPTOR    - name of service file for jar (relative to DEMO_SRCDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#    DEMO_EXTRA_SRCDIR  - path to directory that holds extra sources to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#    DEMO_EXTRA_FILES   - extra sources relative to DEMO_EXTRA_SRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
#    DEMO_OBJECTS       - extra native object files needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#    DEMO_MANIFEST_ATTR - extra line to add to the jar manifest file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
# Assume the source directory is the root directory if not set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
ifndef DEMO_SRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
  DEMO_SRCDIR = $(DEMO_ROOT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
ifndef DEMO_PKGDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
  DEMO_PKGDIR = .
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
# Some demos have special needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
ifneq ($(DEMONAME),agent_util)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  DEMO_NEEDS_AGENT_UTIL    = $(findstring agent_util,$(DEMO_OBJECTS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
ifneq ($(DEMONAME),java_crw_demo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  DEMO_NEEDS_JAVA_CRW_DEMO = $(findstring java_crw_demo,$(DEMO_OBJECTS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
ifeq ($(DEMONAME),hprof)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
  DEMO_NEEDS_NPT           = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
# Place to hold the build area (kind of a temp area)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
DEMO_BUILD_AREA     = $(DEMOCLASSDIR)/$(PRODUCT)/$(DEMONAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
# Destination "src" directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
DEMO_BUILD_SRCDIR     = $(DEMO_BUILD_AREA)/src
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
DEMO_BUILD_SRCZIP     = $(DEMO_BUILD_AREA)/src.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
DEMO_SOURCE_ZIP       = $(DEMO_DESTDIR)/src.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
# Place to hold the jar image we are creating
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
DEMO_JAR_IMAGE      = $(DEMO_BUILD_AREA)/jar_image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
# The jar manifest file we will create and use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
DEMO_MANIFEST       = $(DEMO_BUILD_AREA)/manifest.mf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
# The list of source files or options we will supply to javac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
DEMO_JAVAC_INPUT    = $(DEMO_BUILD_AREA)/javac_input.txt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
# Any name of javah file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
DEMO_JAVAH_FILE = $(DEMO_NATIVECLASS:%=$(DEMO_BUILD_SRCDIR)/%.h)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
# Get complete list of files for this demo
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
ifdef DEMO_PSRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
  DEMO_ALL_FILES2  := $(shell ( $(CD) $(DEMO_PSRCDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    && $(FIND) $(DEMO_PKGDIR) $(SCM_DIRS_prune) -o -type f -print ) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    | $(SED) 's@^\./@@' )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
  DEMO_ALL_FILES   += $(DEMO_ALL_FILES2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
ifdef DEMO_EXTRA_SRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
  DEMO_ALL_FILES   += $(DEMO_EXTRA_FILES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
DEMO_ALL_FILES1    := $(shell ( $(CD) $(DEMO_SRCDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
  && $(FIND) $(DEMO_PKGDIR) $(SCM_DIRS_prune) -o -type f -print ) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
  | $(SED) 's@^\./@@' )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
DEMO_ALL_FILES      += $(DEMO_ALL_FILES1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
# Just the java sources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
DEMO_JAVA_SOURCES = $(filter %.java,$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
# Just the C and C++ sources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
DEMO_C_SRC_FILES   = $(filter %.c,$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
DEMO_CPP_SRC_FILES = $(filter %.cpp,$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
# All the native source files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
DEMO_ALL_NATIVE_SOURCES  = $(DEMO_C_SRC_FILES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
DEMO_ALL_NATIVE_SOURCES += $(DEMO_CPP_SRC_FILES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
DEMO_ALL_NATIVE_SOURCES += $(filter %.h,$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
DEMO_ALL_NATIVE_SOURCES += $(filter %.hpp,$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
# If we have java sources, then define the jar file we will create
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
ifneq ($(strip $(DEMO_JAVA_SOURCES)),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
  DEMO_JAR            = $(DEMO_DESTDIR)/$(DEMONAME).jar
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
# If we have native sources, define the native library we will create
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
ifneq ($(strip $(DEMO_ALL_NATIVE_SOURCES)),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
  # Path to native library we will create
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
  DEMO_LIBRARY = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
      $(DEMO_DESTDIR)/lib$(ISA_DIR)/$(LIB_PREFIX)$(DEMONAME).$(LIBRARY_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
  # C and C++ compiler flags we need to add to standard flags
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
  DEMO_CPPFLAGS     += -I$(DEMO_BUILD_SRCDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
  # If the npt library is used we need to find the npt.h file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
  ifneq ($(DEMO_NEEDS_NPT),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    # The npt library is delivered as part of the JRE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    DEMO_CPPFLAGS   += -I$(SHARE_SRC)/npt -I$(PLATFORM_SRC)/npt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
  # Is the shared agent_util code needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
  ifneq ($(DEMO_NEEDS_AGENT_UTIL),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    DEMO_FULL_SOURCES  += $(DEMO_BUILD_SRCDIR)/agent_util.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    DEMO_FULL_SOURCES  += $(DEMO_BUILD_SRCDIR)/agent_util.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
  # Is the shared java_crw_demo code needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
  ifneq ($(DEMO_NEEDS_JAVA_CRW_DEMO),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    DEMO_FULL_SOURCES  += $(DEMO_BUILD_SRCDIR)/java_crw_demo.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    DEMO_FULL_SOURCES  += $(DEMO_BUILD_SRCDIR)/java_crw_demo.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
  # All the native object files we need to build the library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
  DEMO_OBJECTS += $(DEMO_C_SRC_FILES:%.c=%.$(OBJECT_SUFFIX)) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                  $(DEMO_CPP_SRC_FILES:%.cpp=%.$(OBJECT_SUFFIX))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
  # Linking is special depending on whether we had C++ code or on windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
  DEMO_NEEDS_CPP = $(strip $(DEMO_CPP_SRC_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
  CPPFLAGS      += $(DEMO_CPPFLAGS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
  ifeq ($(PLATFORM),windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    # Note: This is a link with cl.exe, not link.exe, options differ quite
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    #       bit between them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    LINK.demo   = $(LINK.c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    LDLIBS.demo = $(EXTRA_LIBS) $(LFLAGS_$(COMPILER_VERSION))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    ifneq ($(DEMO_NEEDS_CPP),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
      LINK.demo   = $(LINK.cpp)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
      LDLIBS.demo = $(LIBCXX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
      ifeq ($(PLATFORM),solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        LDLIBS.demo += -lc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
      endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
      LINK.demo   = $(LINK.c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
      LDLIBS.demo = $(LDLIBS)
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
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
# Files that are considered resources (need to be in the jar file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
DEMO_RESOURCES        += $(filter-out %.java,$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
# All destination files (top level readme files and all sources)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
#   Note: We exclude the topfiles from the src tree.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
DEMO_DEST_TOPFILES     = $(DEMO_TOPFILES:%=$(DEMO_DESTDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
DEMO_FILTERED_SOURCES  = $(filter-out $(DEMO_TOPFILES),$(DEMO_ALL_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
DEMO_FULL_SOURCES     += $(DEMO_FILTERED_SOURCES:%=$(DEMO_BUILD_SRCDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
# Default rule
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
all: build demo_info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
# Used to populate the destination directories
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
$(DEMO_DESTDIR)/%: $(DEMO_ROOT)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
ifneq ($(DEMO_SRCDIR),$(DEMO_ROOT))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
$(DEMO_DESTDIR)/%: $(DEMO_SRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
$(DEMO_BUILD_SRCDIR)/%: $(DEMO_SRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
ifdef DEMO_PSRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
$(DEMO_BUILD_SRCDIR)/%: $(DEMO_PSRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
ifdef DEMO_EXTRA_SRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
$(DEMO_BUILD_SRCDIR)/%: $(DEMO_EXTRA_SRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
ifneq ($(DEMO_NEEDS_AGENT_UTIL),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
$(DEMO_BUILD_SRCDIR)/%: $(DEMO_SRCDIR)/../agent_util/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
ifneq ($(DEMO_NEEDS_JAVA_CRW_DEMO),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
$(DEMO_BUILD_SRCDIR)/%: $(DEMO_SRCDIR)/../java_crw_demo/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
# Jar manifest file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
$(DEMO_MANIFEST): 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
	$(ECHO) "Main-Class: $(DEMO_MAINCLASS)" > $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
ifdef DEMO_MANIFEST_ATTR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
	$(ECHO) "$(DEMO_MANIFEST_ATTR)" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
# Populating the jar image directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
$(DEMO_JAR_IMAGE)/%: $(DEMO_SRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
ifdef DEMO_PSRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
$(DEMO_JAR_IMAGE)/%: $(DEMO_PSRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
ifdef DEMO_EXTRA_SRCDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
$(DEMO_JAR_IMAGE)/%: $(DEMO_EXTRA_SRCDIR)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
ifdef DEMO_DESCRIPTOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
$(DEMO_JAR_IMAGE)/META-INF/services/$(DEMO_DESCRIPTOR): \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    $(DEMO_SRCDIR)/$(DEMO_DESCRIPTOR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
# If we are creating a jar file (we have java code)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
ifdef DEMO_JAR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
# Input file for javac
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
$(DEMO_JAVAC_INPUT): $(DEMO_JAVA_SOURCES:%=$(DEMO_BUILD_SRCDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
	@for i in $(DEMO_JAVA_SOURCES) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
	  $(ECHO) "$(DEMO_BUILD_SRCDIR)/$$i" >> $@ ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
# Jar file creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
$(DEMO_JAR): \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    $(DEMO_JAVAC_INPUT) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    $(DEMO_MANIFEST) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    $(DEMO_DESCRIPTOR:%=$(DEMO_JAR_IMAGE)/META-INF/services/%) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    $(DEMO_RESOURCES:%=$(DEMO_JAR_IMAGE)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
	$(MKDIR) -p $(DEMO_JAR_IMAGE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
	$(JAVAC_CMD) -d $(DEMO_JAR_IMAGE) -sourcepath $(DEMO_BUILD_SRCDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
	    @$(DEMO_JAVAC_INPUT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
	$(BOOT_JAR_CMD) -cfm $@ $(DEMO_MANIFEST) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
	     -C $(DEMO_JAR_IMAGE) . \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
	     $(JAR_JFLAGS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
# Create a src.zip file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
$(DEMO_BUILD_SRCZIP): $(DEMO_FULL_SOURCES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
	$(CD) $(DEMO_BUILD_AREA)/src && $(ZIPEXE) -q -r ../$(@F) .
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
# Install the destination src.zip file and create the src tree
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
$(DEMO_SOURCE_ZIP): $(DEMO_BUILD_SRCZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
# Native library building
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
ifdef DEMO_LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
  # Full paths to object files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
  DEMO_FULL_OBJECTS = $(DEMO_OBJECTS:%=$(OBJDIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
  VPATH=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
# Native compile rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
$(OBJDIR)/%.$(OBJECT_SUFFIX): $(DEMO_BUILD_SRCDIR)/%.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
	$(COMPILE.c) $(CC_OBJECT_OUTPUT_FLAG)$@ $<
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
  ifneq ($(DEMO_NEEDS_CPP),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
$(OBJDIR)/%.$(OBJECT_SUFFIX): $(DEMO_BUILD_SRCDIR)/%.cpp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
	$(COMPILE.cpp) $(CC_OBJECT_OUTPUT_FLAG)$@ $<
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
  # Actual creation of the native shared library (C++ and C are different)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
$(DEMO_LIBRARY): $(DEMO_FULL_OBJECTS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
	$(LINK.demo) $(SHARED_LIBRARY_FLAG) $(CC_PROGRAM_OUTPUT_FLAG)$@ \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
	    $(DEMO_FULL_OBJECTS) $(LDLIBS.demo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
  # Generation of any javah include file, make sure objects are dependent on it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
  ifdef DEMO_NATIVECLASS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
$(DEMO_JAVAH_FILE): $(DEMO_JAR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
	@$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
	$(JAVAH_CMD) -d $(DEMO_BUILD_SRCDIR) -classpath $(DEMO_JAR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
	    $(DEMO_NATIVECLASS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
$(DEMO_FULL_OBJECTS): $(DEMO_JAVAH_FILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
# Build involves populating the destination "src" tree, building the jar and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
#     native library, and creating a source bundle
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
sources:  $(DEMO_FULL_SOURCES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
	@$(ECHO) "Created $@"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
objects: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
	@$(ECHO) "Created $@"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
# Why the nested make here? It only works this way, don't know why.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
bundles: $(DEMO_BUILD_SRCZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
	$(RM) -r $(DEMO_DESTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
	$(MKDIR) -p $(DEMO_DESTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
	$(MAKE) $(DEMO_LIBRARY) $(DEMO_JAR) $(DEMO_SOURCE_ZIP) $(DEMO_DEST_TOPFILES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
# Applets are special, no jar file, no src.zip, everything expanded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
ifdef DEMO_IS_APPLET
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
	@$(ECHO) "Expanding jar file into demos area at $(DEMO_DESTDIR)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
	( $(CD) $(DEMO_DESTDIR) && $(BOOT_JAR_CMD) -xfv $(DEMONAME).jar && $(RM) -r META-INF $(DEMONAME).jar )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
	@( $(CD) $(DEMO_DESTDIR) && $(java-vm-cleanup) )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
	@$(ECHO) "Expanding source into demos area at $(DEMO_DESTDIR)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
	( $(CD) $(DEMO_DESTDIR) && $(UNZIP) -o src.zip && $(RM) src.zip )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
build: sources bundles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
# Printing out a demo information line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
define printDemoSetting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
if [ "$2" != "" ] ; then $(PRINTF) "%-20s %s\n" "$1:" "$2"; fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
# Print out the demo information
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
demo_info:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
	@$(call printDemoSetting,DEMONAME,$(DEMONAME))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
	@$(call printDemoSetting,DEMO_ROOT,$(DEMO_ROOT))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
	@$(call printDemoSetting,DEMO_SRCDIR,$(DEMO_SRCDIR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
	@$(call printDemoSetting,DEMO_DESTDIR,$(DEMO_DESTDIR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
	@$(call printDemoSetting,DEMO_JAR,$(DEMO_JAR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
	@$(call printDemoSetting,DEMO_MANIFEST_ATTR,$(DEMO_MANIFEST_ATTR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
	@$(call printDemoSetting,DEMO_PSRCDIR,$(DEMO_PSRCDIR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
	@$(call printDemoSetting,DEMO_EXTRA_SRCDIR,$(DEMO_EXTRA_SRCDIR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
	@$(call printDemoSetting,DEMO_EXTRA_FILES,$(DEMO_EXTRA_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
	@$(call printDemoSetting,DEMO_TOPFILES,$(DEMO_TOPFILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
	@$(call printDemoSetting,DEMO_MAINCLASS,$(DEMO_MAINCLASS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
	@$(call printDemoSetting,DEMO_DESCRIPTOR,$(DEMO_DESCRIPTOR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
	@$(call printDemoSetting,DEMO_NATIVECLASS,$(DEMO_NATIVECLASS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
	@$(call printDemoSetting,DEMO_LIBRARY,$(DEMO_LIBRARY))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
	@$(call printDemoSetting,DEMO_OBJECTS,$(DEMO_OBJECTS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
	@$(call printDemoSetting,DEMO_SOURCE_ZIP,$(DEMO_SOURCE_ZIP))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
	@$(ECHO) "========================================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
# Clean rule
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
clean clobber:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
	$(RM) -r $(DEMO_BUILD_AREA)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
	$(RM) -r $(DEMO_DESTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
# This should not be needed, but some versions of GNU amke have a bug that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
#   sometimes deleted these files  for some strange  and unknown reason 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
#   (GNU make version 3.78.1 has the problem, GNU make version 3.80 doesn't?)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
.PRECIOUS: $(DEMO_FULL_SOURCES) $(DEMO_BUILD_SRCZIP) $(DEMO_SOURCE_ZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
# List phony targets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
.PHONY: all build clean clobber demo_info \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
	sources bundles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367