2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-04 00:25:29 +00:00

create implict rule for python executable and use it to create dnssec-checkds

This commit is contained in:
Mark Andrews
2012-06-29 16:53:12 +10:00
parent 54f04323c0
commit ef013897a9
2 changed files with 9 additions and 2 deletions

View File

@@ -30,8 +30,6 @@ MANOBJS = ${MANPAGES} ${HTMLPAGES}
@BIND9_MAKE_RULES@
dnssec-checkds: ${srcdir}/dnssec-checkds.py
cp -f $< $@
chmod +x $@
doc man:: ${MANOBJS}

View File

@@ -358,3 +358,12 @@ ALWAYS_MAKE_SYMTABLE = @ALWAYS_MAKE_SYMTABLE@
.docbook.8:
${XSLTPROC} -o $@ ${top_srcdir}/doc/xsl/isc-manpage.xsl $<
###
### Python executable
###
.SUFFIXES: .py
.py:
cp -f $< $@
chmod +x $@