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

Neil Schemenauer nascheme@users.sourceforge.net
Thu, 25 Jan 2001 12:07:52 -0800


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

Modified Files:
	Makefile.pre.in 
Log Message:
Make module objects from Setup depend on Python.h headers.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile.pre.in	2001/01/25 20:04:14	1.2
--- Makefile.pre.in	2001/01/25 20:07:50	1.3
***************
*** 415,421 ****
  # Header files
  
! $(LIBRARY_OBJS) $(MAINOBJ): \
! 		config.h \
  		Include/Python.h \
  		Include/patchlevel.h \
  		Include/pyport.h \
--- 415,421 ----
  # Header files
  
! PYTHON_HEADERS= \
  		Include/Python.h \
+ 		config.h \
  		Include/patchlevel.h \
  		Include/pyport.h \
***************
*** 454,457 ****
--- 454,459 ----
  		Include/abstract.h \
  		Include/pyfpe.h
+ 
+ $(LIBRARY_OBJS) $(MODOBJS) $(MAINOBJ): $(PYTHON_HEADERS)