diff options
author | Guido van Rossum <guido@python.org> | 2001-09-18 02:40:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-18 02:40:21 (GMT) |
commit | 427ce80df6445a4fae34b414e33b6dc84b615f95 (patch) | |
tree | 6c7574a1b6dc93c89225f40d9fedca26a449432e /Makefile.pre.in | |
parent | b64bec3ec078d66a34175b9dec55eaac5c821b46 (diff) | |
download | cpython-427ce80df6445a4fae34b414e33b6dc84b615f95.zip cpython-427ce80df6445a4fae34b414e33b6dc84b615f95.tar.gz cpython-427ce80df6445a4fae34b414e33b6dc84b615f95.tar.bz2 |
Sort the headers in PYTHON_HEADERS alphabetically. Add
structmember.h, which was missing (and caused me a snide comment by
Tim when he fixed something I missed because of the missed dependency
:-).
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 9c05dd8..d988d2a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -428,47 +428,48 @@ Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \ PYTHON_HEADERS= \ Include/Python.h \ - pyconfig.h \ - Include/patchlevel.h \ - Include/pyport.h \ - Include/pymem.h \ - Include/object.h \ - Include/objimpl.h \ + Include/abstract.h \ + Include/bufferobject.h \ + Include/ceval.h \ + Include/classobject.h \ + Include/cobject.h \ + Include/codecs.h \ Include/compile.h \ - Include/symtable.h \ - Include/pydebug.h \ - Include/unicodeobject.h \ - Include/intobject.h \ - Include/longobject.h \ - Include/floatobject.h \ Include/complexobject.h \ - Include/rangeobject.h \ - Include/stringobject.h \ - Include/bufferobject.h \ - Include/tupleobject.h \ - Include/listobject.h \ - Include/iterobject.h \ Include/descrobject.h \ Include/dictobject.h \ + Include/fileobject.h \ + Include/floatobject.h \ + Include/funcobject.h \ + Include/import.h \ + Include/intobject.h \ + Include/intrcheck.h \ + Include/iterobject.h \ + Include/listobject.h \ + Include/longobject.h \ Include/methodobject.h \ + Include/modsupport.h \ Include/moduleobject.h \ - Include/funcobject.h \ - Include/classobject.h \ - Include/fileobject.h \ - Include/cobject.h \ - Include/traceback.h \ - Include/sliceobject.h \ - Include/codecs.h \ + Include/object.h \ + Include/objimpl.h \ + Include/patchlevel.h \ + Include/pydebug.h \ Include/pyerrors.h \ + Include/pyfpe.h \ + Include/pymem.h \ + Include/pyport.h \ Include/pystate.h \ - Include/modsupport.h \ - Include/ceval.h \ Include/pythonrun.h \ + Include/rangeobject.h \ + Include/sliceobject.h \ + Include/stringobject.h \ + Include/structmember.h \ + Include/symtable.h \ Include/sysmodule.h \ - Include/intrcheck.h \ - Include/import.h \ - Include/abstract.h \ - Include/pyfpe.h + Include/traceback.h \ + Include/tupleobject.h \ + Include/unicodeobject.h \ + pyconfig.h $(LIBRARY_OBJS) $(MODOBJS) Modules/$(MAINOBJ): $(PYTHON_HEADERS) |