cpython: da3f4774b939 (original) (raw)

Mercurial > cpython

changeset 82600:da3f4774b939 2.7

#16004: Add `make touch`. [#16004]

Ezio Melotti ezio.melotti@gmail.com
date Mon, 11 Mar 2013 09:14:09 +0200
parents 3e14aafeca04
children 1ecb712fcf22
files Makefile.pre.in Misc/NEWS
diffstat 2 files changed, 7 insertions(+), 1 deletions(-)[+] [-] Makefile.pre.in 6 Misc/NEWS 2

line wrap: on

line diff

--- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1250,6 +1250,10 @@ TAGS:: etags Include/.h; [](#l1.4) for i in (SRCDIRS);doetags−a(SRCDIRS); do etags -a (SRCDIRS);doetagsa$i/.[ch]; done +# Touch generated files +touch: + touch Include/Python-ast.h Python/Python-ast.c +

Sanitation targets -- clean leaves libraries, executables and tags

files, which clobber removes as well

pycremoval: @@ -1339,7 +1343,7 @@ Python/thread.o: @THREADHEADERS@ .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean -.PHONY: smelly funny patchcheck altmaninstall +.PHONY: smelly funny patchcheck touch altmaninstall .PHONY: gdbhooks

IF YOU PUT ANYTHING HERE IT WILL GO AWAY

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -874,6 +874,8 @@ Tests Build ----- +- Issue #16004: Add make touch. +