jdk/make/java/jli/Makefile

Print this page




  31 #
  32 BUILDDIR = ../..
  33 LIBRARY = jli
  34 PRODUCT = java
  35 
  36 #
  37 # Must be included before Defs.gmk to be functional.
  38 #
  39 # Note that for Windows, both a dynamic and static version are built.
  40 # Doing the compiles with the static library specified can be overridden
  41 # by the link step, but not the reverse.
  42 #
  43 MS_RUNTIME_STATIC = true
  44 
  45 include $(BUILDDIR)/common/Defs.gmk
  46 
  47 ZIP_SRC = $(SHARE_SRC)/native/java/util/zip/zlib-$(ZLIB_VERSION)
  48 LAUNCHER_SHARE_SRC = $(SHARE_SRC)/bin
  49 LAUNCHER_PLATFORM_SRC = $(PLATFORM_SRC)/bin
  50 



  51 ifeq ($(ARCH_FAMILY), amd64)
  52 ERGO_FAMILY=i586
  53 else
  54 ERGO_FAMILY=$(ARCH_FAMILY)
  55 endif

  56 
  57 
  58 #
  59 # Files to compile.
  60 #
  61 FILES_c = \
  62         java.c \
  63         splashscreen_stubs.c \
  64         java_md.c \
  65         parse_manifest.c \
  66         version_comp.c \
  67         wildcard.c \
  68         jli_util.c \
  69         inflate.c \
  70         inftrees.c \
  71         inffast.c \
  72         zadler32.c \
  73         zcrc32.c \
  74         zutil.c
  75 




  31 #
  32 BUILDDIR = ../..
  33 LIBRARY = jli
  34 PRODUCT = java
  35 
  36 #
  37 # Must be included before Defs.gmk to be functional.
  38 #
  39 # Note that for Windows, both a dynamic and static version are built.
  40 # Doing the compiles with the static library specified can be overridden
  41 # by the link step, but not the reverse.
  42 #
  43 MS_RUNTIME_STATIC = true
  44 
  45 include $(BUILDDIR)/common/Defs.gmk
  46 
  47 ZIP_SRC = $(SHARE_SRC)/native/java/util/zip/zlib-$(ZLIB_VERSION)
  48 LAUNCHER_SHARE_SRC = $(SHARE_SRC)/bin
  49 LAUNCHER_PLATFORM_SRC = $(PLATFORM_SRC)/bin
  50 
  51 ifeq ($(ZERO_BUILD), true)
  52 ERGO_FAMILY=zero
  53 else
  54 ifeq ($(ARCH_FAMILY), amd64)
  55 ERGO_FAMILY=i586
  56 else
  57 ERGO_FAMILY=$(ARCH_FAMILY)
  58 endif
  59 endif
  60 
  61 
  62 #
  63 # Files to compile.
  64 #
  65 FILES_c = \
  66         java.c \
  67         splashscreen_stubs.c \
  68         java_md.c \
  69         parse_manifest.c \
  70         version_comp.c \
  71         wildcard.c \
  72         jli_util.c \
  73         inflate.c \
  74         inftrees.c \
  75         inffast.c \
  76         zadler32.c \
  77         zcrc32.c \
  78         zutil.c
  79