OLD | NEW |
1 # Some Portions Copyright (c) 2006-2012 IBM and others. All Rights Reserved. | 1 # Some Portions Copyright (c) 2006-2012 IBM and others. All Rights Reserved. |
2 | 2 |
3 srcdir = @srcdir@ | 3 srcdir = @srcdir@ |
4 top_srcdir = @top_srcdir@ | 4 top_srcdir = @top_srcdir@ |
5 | 5 |
6 top_builddir = ../.. | 6 top_builddir = ../.. |
7 | 7 |
8 subdir = tools/tzcode | 8 subdir = tools/tzcode |
9 | 9 |
10 include $(top_builddir)/icudefs.mk | 10 include $(top_builddir)/icudefs.mk |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 # | 95 # |
96 # old 'tz' rules start here | 96 # old 'tz' rules start here |
97 # | 97 # |
98 | 98 |
99 | 99 |
100 PRIMARY_YDATA= africa antarctica asia australasia \ | 100 PRIMARY_YDATA= africa antarctica asia australasia \ |
101 europe northamerica southamerica | 101 europe northamerica southamerica |
102 YDATA= $(PRIMARY_YDATA) pacificnew etcetera factory backward | 102 YDATA= $(PRIMARY_YDATA) pacificnew etcetera factory backward |
103 NDATA= systemv | 103 NDATA= systemv |
104 SDATA= solar87 solar88 solar89 | 104 SDATA= solar87 solar88 solar89 |
105 TDATA=» » $(YDATA) $(NDATA) $(SDATA) | 105 #TDATA=»» $(YDATA) $(NDATA) $(SDATA) |
| 106 TDATA=» » $(YDATA) $(NDATA) |
106 YEARISTYPE= ./yearistype | 107 YEARISTYPE= ./yearistype |
107 | 108 |
108 TZDIR=zoneinfo | 109 TZDIR=zoneinfo |
109 | 110 |
110 CFLAGS+=-D_POSIX_C_SOURCE | 111 CFLAGS+=-D_POSIX_C_SOURCE |
111 CPPFLAGS+= -DTZDIR=\"$(TZDIR)\" | 112 CPPFLAGS+= -DTZDIR=\"$(TZDIR)\" |
112 | 113 |
113 # more data | 114 # more data |
114 XDATA=zone.tab yearistype.sh leapseconds iso3166.tab | 115 XDATA=zone.tab yearistype.sh leapseconds iso3166.tab |
115 ICUDATA=ZoneMetaData.java icu_zone.txt tz2icu zoneinfo64.txt zoneinfo.txt | 116 ICUDATA=ZoneMetaData.java icu_zone.txt tz2icu zoneinfo64.txt zoneinfo.txt |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 -rm -f $(TDATA) $(XDATA) | 160 -rm -f $(TDATA) $(XDATA) |
160 | 161 |
161 distclean: dataclean clean | 162 distclean: dataclean clean |
162 -rm -f Makefile | 163 -rm -f Makefile |
163 | 164 |
164 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | 165 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
165 cd $(top_builddir) \ | 166 cd $(top_builddir) \ |
166 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | 167 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
167 | 168 |
168 | 169 |
OLD | NEW |