Added function ttob.
[python/dscho.git] / Objects / Makefile.in
blob42671d93840d18a33116784a837e50abc2f39a60
1 # NOTE: Makefile.in is converted into Makefile by the configure script
2 # in the parent directory. Once configure has run, you can recreate
3 # the Makefile by running just config.status.
5 # === Variables set by config.stat ===
7 srcdir= @srcdir@
8 VPATH= @srcdir@
10 CC= @CC@
11 RANLIB= @RANLIB@
12 DEFS= @DEFS@
15 # === Other things that are customizable but not by configure ===
17 TOP= ..
18 INCLDIR= $(TOP)/Py
19 OPT= -g
20 CFLAGS= $(OPT) -I$(INCLDIR) $(DEFS)
22 AR= ar
23 MKDEP= mkdep
24 SHELL= /bin/sh
27 # === Fixed definitions ===
29 OBJS= accessobject.o \
30 classobject.o fileobject.o floatobject.o \
31 frameobject.o funcobject.o intobject.o listobject.o \
32 longobject.o mappingobject.o methodobject.o \
33 moduleobject.o object.o rangeobject.o stringobject.o \
34 tupleobject.o typeobject.o
36 SRCS= accessobject.c \
37 classobject.c fileobject.c floatobject.c \
38 frameobject.c funcobject.c intobject.c listobject.c \
39 longobject.c mappingobject.c methodobject.c \
40 moduleobject.c object.c rangeobject.c stringobject.c \
41 tupleobject.c typeobject.c
43 LIB= libObjects.a
46 # === Rules ===
48 all: $(LIB)
50 $(LIB): $(OBJS)
51 $(AR) cr $(LIB) $(OBJS)
52 $(RANLIB) $(LIB)
54 clean:
55 -rm -f *.o core *~ [@,#]* *.old *.orig *.rej
57 clobber: clean
58 -rm -f *.a tags TAGS
60 Makefile: Makefile.in $(TOP)/config.status
61 CONFIG_FILES=Makefile $(SHELL) $(TOP)/config.status
63 depend: $(SRCS)
64 $(MKDEP) $(CFLAGS) $(SRCS) $(PGENSRCS)
66 # DO NOT DELETE THIS LINE -- mkdep uses it.
67 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
68 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY