diff options
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 |