69 lines
1.5 KiB
Makefile
69 lines
1.5 KiB
Makefile
# NOTE: Makefile.in is converted into Makefile by the configure script
|
|
# in the parent directory. Once configure has run, you can recreate
|
|
# the Makefile by running just config.status.
|
|
|
|
# === Variables set by config.stat ===
|
|
|
|
srcdir= @srcdir@
|
|
VPATH= @srcdir@
|
|
|
|
CC= @CC@
|
|
RANLIB= @RANLIB@
|
|
DEFS= @DEFS@
|
|
|
|
|
|
# === Other things that are customizable but not by configure ===
|
|
|
|
TOP= ..
|
|
INCLDIR= $(TOP)/Py
|
|
OPT= -g
|
|
CFLAGS= $(OPT) -I$(INCLDIR) $(DEFS)
|
|
|
|
AR= ar
|
|
MKDEP= mkdep
|
|
SHELL= /bin/sh
|
|
|
|
|
|
# === Fixed definitions ===
|
|
|
|
OBJS= accessobject.o \
|
|
classobject.o fileobject.o floatobject.o \
|
|
frameobject.o funcobject.o intobject.o listobject.o \
|
|
longobject.o mappingobject.o methodobject.o \
|
|
moduleobject.o object.o rangeobject.o stringobject.o \
|
|
tupleobject.o typeobject.o
|
|
|
|
SRCS= accessobject.c \
|
|
classobject.c fileobject.c floatobject.c \
|
|
frameobject.c funcobject.c intobject.c listobject.c \
|
|
longobject.c mappingobject.c methodobject.c \
|
|
moduleobject.c object.c rangeobject.c stringobject.c \
|
|
tupleobject.c typeobject.c
|
|
|
|
LIB= libObjects.a
|
|
|
|
|
|
# === Rules ===
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
$(AR) cr $(LIB) $(OBJS)
|
|
$(RANLIB) $(LIB)
|
|
|
|
clean:
|
|
-rm -f *.o core *~ [@,#]* *.old *.orig *.rej
|
|
|
|
clobber: clean
|
|
-rm -f *.a tags TAGS
|
|
|
|
Makefile: Makefile.in $(TOP)/config.status
|
|
CONFIG_FILES=Makefile $(SHELL) $(TOP)/config.status
|
|
|
|
depend: $(SRCS)
|
|
$(MKDEP) $(CFLAGS) $(SRCS) $(PGENSRCS)
|
|
|
|
# DO NOT DELETE THIS LINE -- mkdep uses it.
|
|
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
|