cpython/Demo/embed/Makefile

43 lines
827 B
Makefile
Raw Normal View History

# Makefile for embedded Python use demo.
# (This version tailored for CNRI and Solaris; edit lines marked with XXX.)
1994-10-08 16:30:50 -03:00
# XXX The compiler you are using
CC= gcc
# XXX Top of the build tree and source tree
1994-10-08 16:30:50 -03:00
blddir= ../..
srcdir= ../..
# Python version
VERSION= 1.5
1994-10-08 16:30:50 -03:00
# Compiler flags
OPT= -g
INCLUDES= -I$(srcdir)/Include -I$(blddir)
CFLAGS= $(OPT) $(INCLUDES)
1994-10-08 16:30:50 -03:00
# The Python library
LIBPYTHON= $(blddir)/libpython$(VERSION).a
# XXX edit LIBS (in particular) to match $(blddir)/Modules/Makefile
LIBS= -lsocket -lnsl -ldl -lreadline -ltermcap
1994-10-08 16:30:50 -03:00
SYSLIBS= -lm
MODLIBS=
ALLLIBS= $(LIBPYTHON) $(MODLIBS) $(LIBS) $(SYSLIBS)
1994-10-08 16:30:50 -03:00
# Build the demo application
all: demo
demo: demo.o
$(CC) demo.o $(ALLLIBS) -o demo
1994-10-08 16:30:50 -03:00
# Administrative targets
test: demo
./demo
clean:
-rm -f *.o core
clobber: clean
-rm -f *~ @* '#'* demo