Adapted for Python 2.0 under RH Linux.
authorGuido van Rossum <guido@python.org>
Mon, 10 Jul 2000 14:35:12 +0000 (14:35 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 10 Jul 2000 14:35:12 +0000 (14:35 +0000)
Demo/embed/Makefile

index 898a7912f5e2f98b0b678e311a91f467057aa7e7..92f4df347c7cb421208e3b0802914d14f2f379c7 100644 (file)
@@ -1,15 +1,16 @@
 # Makefile for embedded Python use demo.
-# (This version tailored for CNRI and Solaris; edit lines marked with XXX.)
+# (This version tailored for my Red Hat Linux 6.1 setup;
+# edit lines marked with XXX.)
 
 # XXX The compiler you are using
 CC=            gcc
 
 # XXX Top of the build tree and source tree
-blddir=                ../..
+blddir=                ../../linux
 srcdir=                ../..
 
 # Python version
-VERSION=       1.5
+VERSION=       2.0
 
 # Compiler flags
 OPT=           -g
@@ -17,10 +18,10 @@ INCLUDES=   -I$(srcdir)/Include -I$(blddir)
 CFLAGS=                $(OPT) $(INCLUDES)
 
 # The Python library
-LIBPYTHON=             $(blddir)/libpython$(VERSION).a
+LIBPYTHON=     $(blddir)/libpython$(VERSION).a
 
 # XXX edit LIBS (in particular) to match $(blddir)/Modules/Makefile
-LIBS=          -lsocket -lnsl -ldl  -lreadline -ltermcap
+LIBS=          -lnsl -ldl -lreadline -ltermcap -lieee -lpthread -lutil
 SYSLIBS=       -lm
 MODLIBS=       
 ALLLIBS=       $(LIBPYTHON) $(MODLIBS) $(LIBS) $(SYSLIBS)