make/sun/tzdb/Makefile

Print this page




  26 #
  27 # Makefile for building tzdb compiler utility.
  28 #
  29 
  30 BUILDDIR = ../..
  31 PACKAGE = sun.tzdb
  32 PRODUCT = sun
  33 include $(BUILDDIR)/common/Defs.gmk
  34 
  35 # This program must contain a manifest that defines the execution level
  36 # needed to follow standard Vista User Access Control Guidelines
  37 # This must be set before Program.gmk is included
  38 #
  39 BUILD_MANIFEST=true
  40 
  41 #
  42 # Time zone data file creation
  43 #
  44 TZDATA_DIR := ../javazic/tzdata
  45 TZDATA_VER := $(subst tzdata,,$(shell $(GREP) '^tzdata' $(TZDATA_DIR)/VERSION))
  46 TZFILE := africa antarctica asia australasia europe northamerica southamerica backward etcetera




  47 TZFILES := $(addprefix $(TZDATA_DIR)/,$(TZFILE))
  48 


  49 TZDB_JAR = tzdb.jar
  50 
  51 #
  52 # Rules
  53 #
  54 include $(BUILDDIR)/common/Classes.gmk
  55 
  56 #
  57 # Add to the build rule
  58 #
  59 build: $(LIBDIR)/$(TZDB_JAR)
  60 
  61 $(LIBDIR)/$(TZDB_JAR): $(TZFILES)
  62         $(prep-target)
  63         echo build tzdb from version $(TZDATA_VER)
  64         $(BOOT_JAVA_CMD) -jar $(BUILDTOOLJARDIR)/tzdb.jar -verbose \
  65           -version $(TZDATA_VER) -srcdir $(TZDATA_DIR) -dstdir $(LIBDIR) $(TZFILE)
  66 
  67 clean clobber::
  68         $(RM) $(LIBDIR)/$(TZDB_JAR)


  26 #
  27 # Makefile for building tzdb compiler utility.
  28 #
  29 
  30 BUILDDIR = ../..
  31 PACKAGE = sun.tzdb
  32 PRODUCT = sun
  33 include $(BUILDDIR)/common/Defs.gmk
  34 
  35 # This program must contain a manifest that defines the execution level
  36 # needed to follow standard Vista User Access Control Guidelines
  37 # This must be set before Program.gmk is included
  38 #
  39 BUILD_MANIFEST=true
  40 
  41 #
  42 # Time zone data file creation
  43 #
  44 TZDATA_DIR := ../javazic/tzdata
  45 TZDATA_VER := $(subst tzdata,,$(shell $(GREP) '^tzdata' $(TZDATA_DIR)/VERSION))
  46 TZFILE := \
  47     africa antarctica asia australasia europe northamerica \
  48     pacificnew southamerica backward etcetera \
  49     gmt jdk11_backward
  50 
  51 TZFILES := $(addprefix $(TZDATA_DIR)/,$(TZFILE))
  52 
  53 
  54 
  55 TZDB_JAR = tzdb.jar
  56 
  57 #
  58 # Rules
  59 #
  60 include $(BUILDDIR)/common/Classes.gmk
  61 
  62 #
  63 # Add to the build rule
  64 #
  65 build: $(LIBDIR)/$(TZDB_JAR)
  66 
  67 $(LIBDIR)/$(TZDB_JAR): $(TZFILES)
  68         $(prep-target)
  69         echo build tzdb from version $(TZDATA_VER)
  70         $(BOOT_JAVA_CMD) -jar $(BUILDTOOLJARDIR)/tzdb.jar \
  71           -version $(TZDATA_VER) -srcdir $(TZDATA_DIR) -dstdir $(LIBDIR) $(TZFILE)
  72 
  73 clean clobber::
  74         $(RM) $(LIBDIR)/$(TZDB_JAR)