cpython/Demo/embed/Makefile

44 lines
945 B
Makefile
Raw Normal View History

1994-10-08 16:30:50 -03:00
# Makefile for embedded Python use demo
# Top of the build tree and source tree
blddir= ../..
srcdir= ../..
# Compiler flags
OPT= -g
INCLUDES= -I$(srcdir)/Include -I$(blddir)
DEFINES= -DHAVE_CONFIG_H
CFLAGS= $(OPT) $(DEFINES) $(INCLUDES)
# Libraries (must be in this order!)
1994-10-08 16:30:50 -03:00
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
1994-10-08 16:30:50 -03:00
MODLIBS=
LIBS=
SYSLIBS= -lm
ALLLIBS= $(MYLIBS) $(MODLIBS) $(LIBS) $(SYSLIBS)
# Build the demo application
all: demo
demo: demo.o config.o
$(CC) demo.o config.o $(ALLLIBS) -o demo
# Build config.o, suppressing the main() function
config.o: $(blddir)/Modules/config.c
$(CC) $(CFLAGS) -DNO_MAIN -c $(blddir)/Modules/config.c
# Administrative targets
test: demo
./demo
clean:
-rm -f *.o core
clobber: clean
-rm -f *~ @* '#'* demo