Sort the headers in PYTHON_HEADERS alphabetically. Add
authorGuido van Rossum <guido@python.org>
Tue, 18 Sep 2001 02:40:21 +0000 (02:40 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 18 Sep 2001 02:40:21 +0000 (02:40 +0000)
structmember.h, which was missing (and caused me a snide comment by
Tim when he fixed something I missed because of the missed dependency
:-).

Makefile.pre.in

index 9c05dd8b83da504c134b6ec590cb156f30882e08..d988d2a4b74334e97910ccf11c0af2c70faee87d 100644 (file)
@@ -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)