blob: b5d271a32cca15a7cc6fe75d4c82e79363dbf94b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| .SUFFIXES: .list
.list.h:
gperf --ignore-case -L ANSI-C -C -c -P -p -j1 -i 1 -g -o -t -N $(*F) $< \
| sed -f $(top_srcdir)/tool/gperf.sed \
> $(@F)
zonetab.h: zonetab.list
.PHONY: update-zonetab
update-zonetab:
$(RUBY) -C $(srcdir) update-abbr
.PHONY: update-nothing
update-nothing:
update = nothing
zonetab.list: update-$(update)
|