diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-11 07:14:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-11 07:14:09 (GMT) |
commit | 617e2c186de0a1e71d21162559ccfb553652fbb5 (patch) | |
tree | 0f9314f06a0ab2a0a6e386d4376a395402c306f4 /Makefile.pre.in | |
parent | 9b9cd4c85e5f712e365cc54fff78b09a1c14a19c (diff) | |
download | cpython-617e2c186de0a1e71d21162559ccfb553652fbb5.zip cpython-617e2c186de0a1e71d21162559ccfb553652fbb5.tar.gz cpython-617e2c186de0a1e71d21162559ccfb553652fbb5.tar.bz2 |
#16004: Add `make touch`.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 01f4699..93fb0cf 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1250,6 +1250,10 @@ TAGS:: etags Include/*.h; \ for i in $(SRCDIRS); do etags -a $$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 |