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

Tim Peters tim_one@users.sourceforge.net
Fri, 22 Mar 2002 16:20:17 -0800


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

Modified Files:
	Makefile.pre.in 
Log Message:
Build obmalloc.c directly instead of #include'ing from object.c.
Also move all _PyMalloc_XXX entry points into obmalloc.c.

The Windows build works fine.
The Unix build is changed here (Makefile.pre.in), but not tested.
No other platform's build process has been fiddled.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** Makefile.pre.in	28 Feb 2002 19:26:08 -0000	1.76
--- Makefile.pre.in	23 Mar 2002 00:20:15 -0000	1.77
***************
*** 264,267 ****
--- 264,268 ----
  		Objects/moduleobject.o \
  		Objects/object.o \
+ 		Objects/obmalloc.o \
  		Objects/rangeobject.o \
  		Objects/sliceobject.o \
***************
*** 424,429 ****
  Python/importdl.o: $(srcdir)/Python/importdl.c
  		$(CC) -c $(CFLAGS) $(CPPFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
- 
- Objects/object.o: $(srcdir)/Objects/object.c $(srcdir)/Objects/obmalloc.c
  
  Objects/unicodectype.o:	$(srcdir)/Objects/unicodectype.c \
--- 425,428 ----