mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 19:41:04 -05:00
The code in util/bindkeys.pl was overly complicated and it could not be reused on Windows because redirecting stdin and stdout at the same time from perl is overly complicated. Now the util/bindkeys.pl accepts the input file as the first and only argument and prints the header file to stdout. This allows the same utility to be used from automake and win32/Configure script.
13 lines
268 B
Makefile
13 lines
268 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
SUBDIRS = . libltdl lib doc bin
|
|
|
|
BUILT_SOURCES = bind.keys.h
|
|
CLEANFILES = bind.keys.h
|
|
|
|
bind.keys.h: bind.keys Makefile
|
|
${PERL} ${top_srcdir}/util/bindkeys.pl ${top_srcdir}/bind.keys > $@
|
|
|
|
dist_sysconf_DATA = bind.keys
|
|
|
|
.PHONY: doc
|