mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
19 lines
341 B
Makefile
19 lines
341 B
Makefile
.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)
|