< prev index next >

make/linux/makefiles/rules.make

Print this page




 109 RUN.JAVA  = java
 110 RUN.JAVAP = javap
 111 RUN.JAVAH = javah
 112 RUN.JAR   = jar
 113 COMPILE.JAVAC = javac
 114 COMPILE.RMIC  = rmic
 115 
 116 endif
 117 endif
 118 endif
 119 
 120 COMPILE.JAVAC += $(BOOTSTRAP_JAVAC_FLAGS)
 121 
 122 SUM = /usr/bin/sum
 123 
 124 # 'gmake MAKE_VERBOSE=y' gives all the gory details.
 125 QUIETLY$(MAKE_VERBOSE)  = @
 126 RUN.JAR$(MAKE_VERBOSE) += >/dev/null
 127 
 128 # Settings for javac
 129 BOOT_SOURCE_LANGUAGE_VERSION = 6
 130 BOOT_TARGET_CLASS_VERSION = 6
 131 JAVAC_FLAGS = -g -encoding ascii
 132 BOOTSTRAP_JAVAC_FLAGS = $(JAVAC_FLAGS) -source $(BOOT_SOURCE_LANGUAGE_VERSION) -target $(BOOT_TARGET_CLASS_VERSION)
 133 
 134 # With parallel makes, print a message at the end of compilation.
 135 ifeq    ($(findstring j,$(MFLAGS)),j)
 136 COMPILE_DONE    = && { echo Done with $<; }
 137 endif
 138 
 139 # Include $(NONPIC_OBJ_FILES) definition
 140 ifndef LP64
 141 include $(GAMMADIR)/make/pic.make
 142 endif
 143 
 144 include $(GAMMADIR)/make/altsrc.make
 145 
 146 # The non-PIC object files are only generated for 32 bit platforms.
 147 ifdef LP64
 148 %.o: %.cpp
 149         @echo Compiling $<
 150         $(QUIETLY) $(REMOVE_TARGET)




 109 RUN.JAVA  = java
 110 RUN.JAVAP = javap
 111 RUN.JAVAH = javah
 112 RUN.JAR   = jar
 113 COMPILE.JAVAC = javac
 114 COMPILE.RMIC  = rmic
 115 
 116 endif
 117 endif
 118 endif
 119 
 120 COMPILE.JAVAC += $(BOOTSTRAP_JAVAC_FLAGS)
 121 
 122 SUM = /usr/bin/sum
 123 
 124 # 'gmake MAKE_VERBOSE=y' gives all the gory details.
 125 QUIETLY$(MAKE_VERBOSE)  = @
 126 RUN.JAR$(MAKE_VERBOSE) += >/dev/null
 127 
 128 # Settings for javac
 129 BOOT_SOURCE_LANGUAGE_VERSION = 8
 130 BOOT_TARGET_CLASS_VERSION = 8
 131 JAVAC_FLAGS = -g -encoding ascii
 132 BOOTSTRAP_JAVAC_FLAGS = $(JAVAC_FLAGS) -source $(BOOT_SOURCE_LANGUAGE_VERSION) -target $(BOOT_TARGET_CLASS_VERSION)
 133 
 134 # With parallel makes, print a message at the end of compilation.
 135 ifeq    ($(findstring j,$(MFLAGS)),j)
 136 COMPILE_DONE    = && { echo Done with $<; }
 137 endif
 138 
 139 # Include $(NONPIC_OBJ_FILES) definition
 140 ifndef LP64
 141 include $(GAMMADIR)/make/pic.make
 142 endif
 143 
 144 include $(GAMMADIR)/make/altsrc.make
 145 
 146 # The non-PIC object files are only generated for 32 bit platforms.
 147 ifdef LP64
 148 %.o: %.cpp
 149         @echo Compiling $<
 150         $(QUIETLY) $(REMOVE_TARGET)


< prev index next >