diff options
author | Guido van Rossum <guido@python.org> | 1995-03-28 09:22:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-28 09:22:53 (GMT) |
commit | 3caad8c291691dbec58a75db2341d80522793f88 (patch) | |
tree | 265c7f2f4fd50641e7640bc1058192643ee7e998 /Demo/embed/Makefile | |
parent | 1b91cdae97831ba1ac670bae2134ca164576ed9e (diff) | |
download | cpython-3caad8c291691dbec58a75db2341d80522793f88.zip cpython-3caad8c291691dbec58a75db2341d80522793f88.tar.gz cpython-3caad8c291691dbec58a75db2341d80522793f88.tar.bz2 |
adapted to new naming; clarify comments somewhat
Diffstat (limited to 'Demo/embed/Makefile')
-rw-r--r-- | Demo/embed/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Demo/embed/Makefile b/Demo/embed/Makefile index d63a9d4..9835c30 100644 --- a/Demo/embed/Makefile +++ b/Demo/embed/Makefile @@ -10,12 +10,13 @@ INCLUDES= -I$(srcdir)/Include -I$(blddir) DEFINES= -DHAVE_CONFIG_H CFLAGS= $(OPT) $(DEFINES) $(INCLUDES) -# Libraries -# XXX edit MODLIBS, LIBS and SYSLIBS to match $(blddir)/Modules/Makefile +# Libraries (must be in this order!) MYLIBS= $(blddir)/Modules/libModules.a \ $(blddir)/Python/libPython.a \ $(blddir)/Objects/libObjects.a \ $(blddir)/Parser/libParser.a + +# XXX edit MODLIBS, LIBS and SYSLIBS to match $(blddir)/Modules/Makefile MODLIBS= LIBS= SYSLIBS= -lm |