Edit comments for current Python; bump version number of Python

This commit is contained in:
Andrew M. Kuchling 2010-06-11 00:14:34 +00:00
parent 33958b87f2
commit a0b0c6f23c
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Makefile for embedded Python use demo. # Makefile for embedded Python use demo.
# (This version tailored for my Red Hat Linux 6.1 setup; # (This version originally written on Red Hat Linux 6.1;
# edit lines marked with XXX.) # edit lines marked with XXX.)
# XXX The compiler you are using # XXX The compiler you are using
@ -10,7 +10,7 @@ blddir= ../..
srcdir= ../.. srcdir= ../..
# Python version # Python version
VERSION= 2.6 VERSION= 2.7
# Compiler flags # Compiler flags
OPT= -g OPT= -g
@ -21,7 +21,7 @@ CPPFLAGS= $(INCLUDES)
# The Python library # The Python library
LIBPYTHON= $(blddir)/libpython$(VERSION).a LIBPYTHON= $(blddir)/libpython$(VERSION).a
# XXX edit LIBS (in particular) to match $(blddir)/Modules/Makefile # XXX edit LIBS (in particular) to match $(blddir)/Makefile
LIBS= -lnsl -ldl -lreadline -ltermcap -lieee -lpthread -lutil LIBS= -lnsl -ldl -lreadline -ltermcap -lieee -lpthread -lutil
LDFLAGS= -Xlinker -export-dynamic LDFLAGS= -Xlinker -export-dynamic
SYSLIBS= -lm SYSLIBS= -lm