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