corba/make/common/Rules.gmk
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 4 02bb8761fcce
child 2199 05f4bf151242
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     2
# Copyright 1995-2007 Sun Microsystems, Inc.  All Rights Reserved.
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
02bb8761fcce Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
02bb8761fcce Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
02bb8761fcce Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
02bb8761fcce Initial load
duke
parents:
diff changeset
    23
# have any questions.
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
# Rules shared by all Java makefiles.
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
# Used to apply to source file $<, checks code conventions, issues warnings.
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
define check-conventions
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
  if [ "$(CONVENTION_WATCH)" = "true" ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
    if [ "`$(CAT) -n -v -t $< | $(EGREP) -v '\@\(\#\)' | $(EGREP) '\^[MLI]'`" != "" ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
      $(ECHO) "WARNING: File contains tabs, ^M, or ^L characters: $<"; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
      if [ "$(CONVENTION_DETAILS)" = "true" ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
        $(CAT) -n -v -t $< | $(EGREP) -v '\@\(\#\)' | $(EGREP) '\^[MLI]' ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
      fi; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
    fi; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
  fi
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
endef
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
# Make sure the default rule is all
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
rules_default_rule: all
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
# Directory set up.  (Needed by deploy workspace)
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
# 
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
$(CLASSDESTDIR) $(CLASSHDRDIR) $(OBJDIR) $(OUTPUTDIR) $(BINDIR) $(LIBDIR) $(LIBDIR)/$(LIBARCH) $(TEMPDIR) $(EXTDIR):
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
	$(MKDIR) -p $@ 
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
# All source tree areas for java/properties files 
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
ALL_CLASSES_SRC = $(SHARE_SRC)/classes $(PLATFORM_SRC)/classes
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
# If AUTO_FILES_PROPERTIES_DIRS used, automatically find properties files
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
ifdef AUTO_FILES_PROPERTIES_DIRS
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
  AUTO_FILES_PROPERTIES_FILTERS1  = $(SCM_DIRs) 'X-*' '*-X-*' ',*'
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
  AUTO_FILES_PROPERTIES_FILTERS1 += $(AUTO_PROPERTIES_PRUNE)
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
  FILES_properties_find_filters1 = $(AUTO_FILES_PROPERTIES_FILTERS1:%=-name % -prune -o)
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
  FILES_properties_auto1 := \
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
     $(shell \
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
        for dir in $(ALL_CLASSES_SRC) ; do \
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
          if [ -d $$dir ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
            ( $(CD) $$dir; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
              for sdir in $(AUTO_FILES_PROPERTIES_DIRS); do \
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
                if [ -d $$sdir ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
                  $(FIND) $$sdir $(FILES_properties_find_filters1) \
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
                                 -name '*.properties' -print ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
                fi ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
              done \
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
            ); \
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
          fi; \
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
        done \
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
      )
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
else
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
  FILES_properties_auto1 =
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
endif # AUTO_FILES_PROPERTIES_DIRS
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
# Add any automatically found properties files to the properties file list
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
FILES_properties += $(FILES_properties_auto1)
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
# Get Resources help
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
include $(TOPDIR)/make/common/internal/Resources.gmk
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
# Compiling .java files.
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
# Automatically add to FILES_java if AUTO_FILES_JAVA_DIRS is defined
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
#    There are two basic types of sources, normal source files and the
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
#    generated ones. The Normal sources will be located in:
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
#         $(ALL_CLASSES_SRC)
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
#    The generated sources, which might show up late to dinner, are at:
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
#         $(GENSRCDIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
#    and since they could be generated late, we need to be careful that
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
#    we look for these sources late and not use the ':=' assignment which
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
#    might miss their generation.
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
ifdef AUTO_FILES_JAVA_DIRS
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
  # Filter out these files or directories
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
  AUTO_FILES_JAVA_SOURCE_FILTERS1  = $(SCM_DIRs) 'X-*' '*-X-*' '*-template.java' ',*'
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
  AUTO_FILES_JAVA_SOURCE_FILTERS2  = 
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
  AUTO_FILES_JAVA_SOURCE_FILTERS1 += $(AUTO_JAVA_PRUNE)
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
  AUTO_FILES_JAVA_SOURCE_FILTERS2 += $(AUTO_JAVA_PRUNE)
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
  # First list is the normal sources that should always be there,
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
  #   by using the ':=', which means we do this processing once.
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
  FILES_java_find_filters1 = $(AUTO_FILES_JAVA_SOURCE_FILTERS1:%=-name % -prune -o)
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
  FILES_java_auto1 := \
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
     $(shell \
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
        for dir in $(ALL_CLASSES_SRC) ; do \
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
          if [ -d $$dir ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
            ( $(CD) $$dir; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
              for sdir in $(AUTO_FILES_JAVA_DIRS); do \
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
                if [ -d $$sdir ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
                  $(FIND) $$sdir $(FILES_java_find_filters1) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
                                 -name '*.java' -print ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
                fi ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
              done \
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
            ); \
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
          fi; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
        done \
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
      )
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
  # Second list is the generated sources that should be rare, but will likely
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
  #   show up late and we need to look for them at the last minute, so we
02bb8761fcce Initial load
duke
parents:
diff changeset
   133
  #   cannot use the ':=' assigment here. But if this gets expanded multiple
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
  #   times, the if tests should make them relatively cheap.
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
  FILES_java_find_filters2 = $(AUTO_FILES_JAVA_SOURCE_FILTERS2:%=-name % -prune -o)
02bb8761fcce Initial load
duke
parents:
diff changeset
   136
  FILES_java_auto2 = \
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
     $(shell \
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
        for dir in $(GENSRCDIR); do \
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
          if [ -d $$dir ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
            ( $(CD) $$dir; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
              for sdir in $(AUTO_FILES_JAVA_DIRS); do \
02bb8761fcce Initial load
duke
parents:
diff changeset
   142
                if [ -d $$sdir ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
   143
                  $(FIND) $$sdir $(FILES_java_find_filters2) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
                                 -name '*.java' -print ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   145
                fi ; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
              done \
02bb8761fcce Initial load
duke
parents:
diff changeset
   147
            ); \
02bb8761fcce Initial load
duke
parents:
diff changeset
   148
          fi; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   149
        done \
02bb8761fcce Initial load
duke
parents:
diff changeset
   150
      )
02bb8761fcce Initial load
duke
parents:
diff changeset
   151
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   152
  FILES_java_auto1 =
02bb8761fcce Initial load
duke
parents:
diff changeset
   153
  FILES_java_auto2 =
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
# Add all found java sources to FILES_java macro (if AUTO_FILES_JAVA_DIRS used)
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
FILES_java += $(FILES_java_auto1) $(FILES_java_auto2)
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
02bb8761fcce Initial load
duke
parents:
diff changeset
   159
# File that will hold java source names that need compiling
02bb8761fcce Initial load
duke
parents:
diff changeset
   160
JAVA_SOURCE_LIST=$(TEMPDIR)/.classes.list
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
02bb8761fcce Initial load
duke
parents:
diff changeset
   162
# Add a java source to the list
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
define add-java-file
02bb8761fcce Initial load
duke
parents:
diff changeset
   164
$(ECHO) "$?" >> $(JAVA_SOURCE_LIST)
02bb8761fcce Initial load
duke
parents:
diff changeset
   165
$(check-conventions)
02bb8761fcce Initial load
duke
parents:
diff changeset
   166
endef
02bb8761fcce Initial load
duke
parents:
diff changeset
   167
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
$(CLASSDESTDIR)/%.class: $(GENSRCDIR)/%.java
02bb8761fcce Initial load
duke
parents:
diff changeset
   169
	@$(add-java-file)
02bb8761fcce Initial load
duke
parents:
diff changeset
   170
$(CLASSDESTDIR)/%.class: $(PLATFORM_SRC)/classes/%.java
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
	@$(add-java-file)
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
$(CLASSDESTDIR)/%.class: $(SHARE_SRC)/classes/%.java
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
	@$(add-java-file)
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
# List of class files needed
02bb8761fcce Initial load
duke
parents:
diff changeset
   176
FILES_class = $(FILES_java:%.java=$(CLASSDESTDIR)/%.class)
02bb8761fcce Initial load
duke
parents:
diff changeset
   177
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
# Got to include exported files.
02bb8761fcce Initial load
duke
parents:
diff changeset
   179
FILES_class += $(FILES_export:%.java=$(CLASSDESTDIR)/%.class)
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
02bb8761fcce Initial load
duke
parents:
diff changeset
   181
# Construct list of java sources we need to compile
02bb8761fcce Initial load
duke
parents:
diff changeset
   182
source_list_prime:
02bb8761fcce Initial load
duke
parents:
diff changeset
   183
	@$(MKDIR) -p $(TEMPDIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   184
# Note that we slip resources in so that compiled properties files get created:
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
$(JAVA_SOURCE_LIST) : source_list_prime resources $(FILES_class)
02bb8761fcce Initial load
duke
parents:
diff changeset
   186
	@$(TOUCH) $@
02bb8761fcce Initial load
duke
parents:
diff changeset
   187
02bb8761fcce Initial load
duke
parents:
diff changeset
   188
.delete.classlist:
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
	@$(RM) $(JAVA_SOURCE_LIST)
02bb8761fcce Initial load
duke
parents:
diff changeset
   190
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
# Make sure all newer sources are compiled (in a batch)
02bb8761fcce Initial load
duke
parents:
diff changeset
   192
classes : $(CLASSES_INIT) .delete.classlist .compile.classlist
02bb8761fcce Initial load
duke
parents:
diff changeset
   193
02bb8761fcce Initial load
duke
parents:
diff changeset
   194
.compile.classlist : $(JAVA_SOURCE_LIST)
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
	@$(MKDIR) -p $(CLASSDESTDIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   196
	@if [ `$(CAT) $(JAVA_SOURCE_LIST) | $(WC) -l` -ge 1 ] ; then \
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
	  $(ECHO) "# Java sources to be compiled: (listed in file $(JAVA_SOURCE_LIST))"; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   198
	  $(CAT) $(JAVA_SOURCE_LIST); \
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
	  $(ECHO) "# Running javac:"; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   200
	  $(ECHO) $(JAVAC_CMD) -sourcepath "$(SOURCEPATH)" -d $(CLASSDESTDIR) @$(JAVA_SOURCE_LIST); \
02bb8761fcce Initial load
duke
parents:
diff changeset
   201
	  $(JAVAC_CMD) -sourcepath "$(SOURCEPATH)" -d $(CLASSDESTDIR) @$(JAVA_SOURCE_LIST); \
02bb8761fcce Initial load
duke
parents:
diff changeset
   202
	fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   203
	@$(java-vm-cleanup)
02bb8761fcce Initial load
duke
parents:
diff changeset
   204
02bb8761fcce Initial load
duke
parents:
diff changeset
   205
clobber clean::
02bb8761fcce Initial load
duke
parents:
diff changeset
   206
	$(RM) $(JAVA_SOURCE_LIST)
02bb8761fcce Initial load
duke
parents:
diff changeset
   207
02bb8761fcce Initial load
duke
parents:
diff changeset
   208
ifndef DONT_CLOBBER_CLASSES
02bb8761fcce Initial load
duke
parents:
diff changeset
   209
  ifndef PACKAGE
02bb8761fcce Initial load
duke
parents:
diff changeset
   210
    DONT_CLOBBER_CLASSES = true
02bb8761fcce Initial load
duke
parents:
diff changeset
   211
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
   212
    DONT_CLOBBER_CLASSES = false
02bb8761fcce Initial load
duke
parents:
diff changeset
   213
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   214
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   215
02bb8761fcce Initial load
duke
parents:
diff changeset
   216
packages.clean:
02bb8761fcce Initial load
duke
parents:
diff changeset
   217
ifeq ($(DONT_CLOBBER_CLASSES),false)
02bb8761fcce Initial load
duke
parents:
diff changeset
   218
  ifdef AUTO_FILES_JAVA_DIRS
02bb8761fcce Initial load
duke
parents:
diff changeset
   219
	@for sdir in $(AUTO_FILES_JAVA_DIRS); do \
02bb8761fcce Initial load
duke
parents:
diff changeset
   220
	  $(ECHO) "$(RM) -r $(CLASSDESTDIR)/$$sdir"; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   221
	  $(RM) -r $(CLASSDESTDIR)/$$sdir; \
02bb8761fcce Initial load
duke
parents:
diff changeset
   222
        done
02bb8761fcce Initial load
duke
parents:
diff changeset
   223
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
   224
	$(RM) -r $(CLASSDESTDIR)/$(PKGDIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   225
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   226
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   227
02bb8761fcce Initial load
duke
parents:
diff changeset
   228
classes.clean: packages.clean
02bb8761fcce Initial load
duke
parents:
diff changeset
   229
	$(RM) $(JAVA_SOURCE_LIST)
02bb8761fcce Initial load
duke
parents:
diff changeset
   230
02bb8761fcce Initial load
duke
parents:
diff changeset
   231
#
02bb8761fcce Initial load
duke
parents:
diff changeset
   232
# C and C++ make dependencies
02bb8761fcce Initial load
duke
parents:
diff changeset
   233
#
02bb8761fcce Initial load
duke
parents:
diff changeset
   234
include $(TOPDIR)/make/common/internal/NativeCompileRules.gmk
02bb8761fcce Initial load
duke
parents:
diff changeset
   235
02bb8761fcce Initial load
duke
parents:
diff changeset
   236
#
02bb8761fcce Initial load
duke
parents:
diff changeset
   237
# Running Javah to generate stuff into CClassHeaders.
02bb8761fcce Initial load
duke
parents:
diff changeset
   238
#
02bb8761fcce Initial load
duke
parents:
diff changeset
   239
02bb8761fcce Initial load
duke
parents:
diff changeset
   240
ifdef FILES_export
02bb8761fcce Initial load
duke
parents:
diff changeset
   241
02bb8761fcce Initial load
duke
parents:
diff changeset
   242
CLASSES.export  = $(subst /,.,$(FILES_export:%.java=%))
02bb8761fcce Initial load
duke
parents:
diff changeset
   243
CLASSES.export += $(subst /,.,$(FILES_export2:%.java=%))
02bb8761fcce Initial load
duke
parents:
diff changeset
   244
CLASSES.export += $(subst /,.,$(FILES_export3:%.java=%))
02bb8761fcce Initial load
duke
parents:
diff changeset
   245
CLASSES_export  = $(FILES_export:%.java=$(CLASSDESTDIR)/%.class)
02bb8761fcce Initial load
duke
parents:
diff changeset
   246
CLASSES_export += $(FILES_export2:%.java=$(CLASSDESTDIR)/%.class)
02bb8761fcce Initial load
duke
parents:
diff changeset
   247
CLASSES_export += $(FILES_export3:%.java=$(CLASSDESTDIR)/%.class)
02bb8761fcce Initial load
duke
parents:
diff changeset
   248
02bb8761fcce Initial load
duke
parents:
diff changeset
   249
# Fix when deploy workspace makefiles don't depend on this name
02bb8761fcce Initial load
duke
parents:
diff changeset
   250
#CLASSHDR_DOTFILE=$(CLASSHDRDIR)/.classheaders
02bb8761fcce Initial load
duke
parents:
diff changeset
   251
02bb8761fcce Initial load
duke
parents:
diff changeset
   252
CLASSHDR_DOTFILE=$(OBJDIR)/.class.headers.$(ARCH)
02bb8761fcce Initial load
duke
parents:
diff changeset
   253
02bb8761fcce Initial load
duke
parents:
diff changeset
   254
classheaders: classes $(CLASSHDR_DOTFILE)
02bb8761fcce Initial load
duke
parents:
diff changeset
   255
02bb8761fcce Initial load
duke
parents:
diff changeset
   256
$(CLASSHDR_DOTFILE): $(CLASSES_export)
02bb8761fcce Initial load
duke
parents:
diff changeset
   257
	$(prep-target)
02bb8761fcce Initial load
duke
parents:
diff changeset
   258
	@$(ECHO) "# Running javah:"
02bb8761fcce Initial load
duke
parents:
diff changeset
   259
	$(JAVAH_CMD) -d $(CLASSHDRDIR)/ \
02bb8761fcce Initial load
duke
parents:
diff changeset
   260
		$(CLASSES.export) $(subst $$,\$$,$(EXPORTED_inner))
02bb8761fcce Initial load
duke
parents:
diff changeset
   261
	@$(java-vm-cleanup)
02bb8761fcce Initial load
duke
parents:
diff changeset
   262
	@$(TOUCH) $@
02bb8761fcce Initial load
duke
parents:
diff changeset
   263
02bb8761fcce Initial load
duke
parents:
diff changeset
   264
classheaders.clean:
02bb8761fcce Initial load
duke
parents:
diff changeset
   265
	$(RM) $(CLASSHDR_DOTFILE)
02bb8761fcce Initial load
duke
parents:
diff changeset
   266
	$(RM) -r $(CLASSHDRDIR)
02bb8761fcce Initial load
duke
parents:
diff changeset
   267
02bb8761fcce Initial load
duke
parents:
diff changeset
   268
else # FILES_export
02bb8761fcce Initial load
duke
parents:
diff changeset
   269
02bb8761fcce Initial load
duke
parents:
diff changeset
   270
classheaders: classes
02bb8761fcce Initial load
duke
parents:
diff changeset
   271
02bb8761fcce Initial load
duke
parents:
diff changeset
   272
classheaders.clean: 
02bb8761fcce Initial load
duke
parents:
diff changeset
   273
02bb8761fcce Initial load
duke
parents:
diff changeset
   274
endif # FILES_export
02bb8761fcce Initial load
duke
parents:
diff changeset
   275
02bb8761fcce Initial load
duke
parents:
diff changeset
   276
clean clobber:: classheaders.clean classes.clean .delete.classlist
02bb8761fcce Initial load
duke
parents:
diff changeset
   277
02bb8761fcce Initial load
duke
parents:
diff changeset
   278
# 
02bb8761fcce Initial load
duke
parents:
diff changeset
   279
# Default dependencies
02bb8761fcce Initial load
duke
parents:
diff changeset
   280
#
02bb8761fcce Initial load
duke
parents:
diff changeset
   281
02bb8761fcce Initial load
duke
parents:
diff changeset
   282
all: build
02bb8761fcce Initial load
duke
parents:
diff changeset
   283
02bb8761fcce Initial load
duke
parents:
diff changeset
   284
build: classheaders
02bb8761fcce Initial load
duke
parents:
diff changeset
   285
02bb8761fcce Initial load
duke
parents:
diff changeset
   286
default: all
02bb8761fcce Initial load
duke
parents:
diff changeset
   287
02bb8761fcce Initial load
duke
parents:
diff changeset
   288
.PHONY: all build clean clobber \
02bb8761fcce Initial load
duke
parents:
diff changeset
   289
        .delete.classlist classes .compile.classlist classes.clean \
02bb8761fcce Initial load
duke
parents:
diff changeset
   290
	 classheaders classheaders.clean \
02bb8761fcce Initial load
duke
parents:
diff changeset
   291
	 batch_compile
02bb8761fcce Initial load
duke
parents:
diff changeset
   292