diff options
author | Fred Drake <fdrake@acm.org> | 2002-07-25 16:23:21 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-07-25 16:23:21 (GMT) |
commit | ead36d787434d60cdd697df8debf552cc6d9888c (patch) | |
tree | 3a4639147590565e259a1d850a510bc1f9ac4081 /Demo/embed/Makefile | |
parent | 186bec2f8d7c057b4b9be492b11f4929068e9b84 (diff) | |
download | cpython-ead36d787434d60cdd697df8debf552cc6d9888c.zip cpython-ead36d787434d60cdd697df8debf552cc6d9888c.tar.gz cpython-ead36d787434d60cdd697df8debf552cc6d9888c.tar.bz2 |
- Make number in comment match the targets in that section of the
Makefile.
- Update the Python version number so we're using the library built
from the current working sources.
Diffstat (limited to 'Demo/embed/Makefile')
-rw-r--r-- | Demo/embed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/embed/Makefile b/Demo/embed/Makefile index 4269946..c8d538b 100644 --- a/Demo/embed/Makefile +++ b/Demo/embed/Makefile @@ -10,7 +10,7 @@ blddir= ../.. srcdir= ../.. # Python version -VERSION= 2.2 +VERSION= 2.3 # Compiler flags OPT= -g @@ -28,7 +28,7 @@ SYSLIBS= -lm MODLIBS= ALLLIBS= $(LIBPYTHON) $(MODLIBS) $(LIBS) $(SYSLIBS) -# Build the demo application +# Build the demo applications all: demo loop importexc demo: demo.o $(CC) $(LDFLAGS) demo.o $(ALLLIBS) -o demo |