< prev index next >

make/lib/Lib-java.prefs.gmk

Print this page




  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 # libprefs on macosx do not use the unix code
  31 ifeq ($(OPENJDK_TARGET_OS), macosx)
  32   LIBPREFS_EXCLUDE_SRC_PATTERNS := unix
  33 endif
  34 
  35 $(eval $(call SetupJdkLibrary, BUILD_LIBPREFS, \
  36     NAME := prefs, \
  37     EXCLUDE_SRC_PATTERNS := $(LIBPREFS_EXCLUDE_SRC_PATTERNS), \
  38     OPTIMIZATION := HIGH, \
  39     CFLAGS := $(CFLAGS_JDKLIB), \
  40     LDFLAGS := $(LDFLAGS_JDKLIB) \
  41         $(call SET_SHARED_LIBRARY_ORIGIN), \
  42     LIBS_unix := -ljvm, \
  43     LIBS_linux := -ljava, \
  44     LIBS_solaris := -ljava, \
  45     LIBS_aix := -ljava, \
  46     LIBS_macosx := -framework CoreFoundation -framework Foundation, \
  47     LIBS_windows := advapi32.lib jvm.lib $(WIN_JAVA_LIB), \
  48 ))
  49 
  50 $(BUILD_LIBPREFS): $(call FindLib, java.base, java)
  51 


  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 # libprefs on macosx do not use the unix code
  31 ifeq ($(call isTargetOs, macosx), true)
  32   LIBPREFS_EXCLUDE_SRC_PATTERNS := unix
  33 endif
  34 
  35 $(eval $(call SetupJdkLibrary, BUILD_LIBPREFS, \
  36     NAME := prefs, \
  37     EXCLUDE_SRC_PATTERNS := $(LIBPREFS_EXCLUDE_SRC_PATTERNS), \
  38     OPTIMIZATION := HIGH, \
  39     CFLAGS := $(CFLAGS_JDKLIB), \
  40     LDFLAGS := $(LDFLAGS_JDKLIB) \
  41         $(call SET_SHARED_LIBRARY_ORIGIN), \
  42     LIBS_unix := -ljvm, \
  43     LIBS_linux := -ljava, \
  44     LIBS_solaris := -ljava, \
  45     LIBS_aix := -ljava, \
  46     LIBS_macosx := -framework CoreFoundation -framework Foundation, \
  47     LIBS_windows := advapi32.lib jvm.lib $(WIN_JAVA_LIB), \
  48 ))
  49 
  50 $(BUILD_LIBPREFS): $(call FindLib, java.base, java)
  51 
< prev index next >