Add reindent target.

This commit is contained in:
Martin v. Löwis 2006-04-17 19:25:49 +00:00
parent 1a00e1856e
commit 4be4e657e0
2 changed files with 7 additions and 0 deletions

View File

@ -956,6 +956,10 @@ config.status: $(srcdir)/configure
.c.o:
$(CC) -c $(PY_CFLAGS) -o $@ $<
# Run reindent on the library
reindent:
./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
# Rerun configure with the same options as it was run last time,
# provided the config.status script exists
recheck:

View File

@ -95,6 +95,9 @@ Library
Build
-----
- The Makefile now has a reindent target, which runs reindent.py on
the library.
- Patch #1470875: Building Python with MS Free Compiler
- Patch #1161914: Add a python-config script.