[Python-checkins] CVS: python/dist/src Makefile.pre.in,1.58,1.59

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 17 Sep 2001 19:40:23 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv11845

Modified Files:
	Makefile.pre.in 
Log Message:
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
:-).


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.58
retrieving revision 1.59
diff -C2 -d -r1.58 -r1.59
*** Makefile.pre.in	2001/09/12 18:59:25	1.58
--- Makefile.pre.in	2001/09/18 02:40:21	1.59
***************
*** 429,473 ****
  PYTHON_HEADERS= \
  		Include/Python.h \
! 		pyconfig.h \
! 		Include/patchlevel.h \
! 		Include/pyport.h \
! 		Include/pymem.h \
! 		Include/object.h \
! 		Include/objimpl.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/methodobject.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/pyerrors.h \
  		Include/pystate.h \
- 		Include/modsupport.h \
- 		Include/ceval.h \
  		Include/pythonrun.h \
  		Include/sysmodule.h \
! 		Include/intrcheck.h \
! 		Include/import.h \
! 		Include/abstract.h \
! 		Include/pyfpe.h
  
  $(LIBRARY_OBJS) $(MODOBJS) Modules/$(MAINOBJ): $(PYTHON_HEADERS)
--- 429,474 ----
  PYTHON_HEADERS= \
  		Include/Python.h \
! 		Include/abstract.h \
! 		Include/bufferobject.h \
! 		Include/ceval.h \
! 		Include/classobject.h \
! 		Include/cobject.h \
! 		Include/codecs.h \
  		Include/compile.h \
  		Include/complexobject.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/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/pythonrun.h \
+ 		Include/rangeobject.h \
+ 		Include/sliceobject.h \
+ 		Include/stringobject.h \
+ 		Include/structmember.h \
+ 		Include/symtable.h \
  		Include/sysmodule.h \
! 		Include/traceback.h \
! 		Include/tupleobject.h \
! 		Include/unicodeobject.h \
! 		pyconfig.h
  
  $(LIBRARY_OBJS) $(MODOBJS) Modules/$(MAINOBJ): $(PYTHON_HEADERS)