summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-20 10:43:53 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-20 10:43:53 (GMT)
commitb898bd29b0a524a3bc4f3b6d7f1ce3a7517d28e9 (patch)
tree29dc792209dc91fa230ce2565dfdfc71f94bbcea
parent2a45141741b385e21e6040815b2a2b72a1789568 (diff)
downloadcpython-b898bd29b0a524a3bc4f3b6d7f1ce3a7517d28e9.zip
cpython-b898bd29b0a524a3bc4f3b6d7f1ce3a7517d28e9.tar.gz
cpython-b898bd29b0a524a3bc4f3b6d7f1ce3a7517d28e9.tar.bz2
New file
-rw-r--r--Python/Makefile.in75
1 files changed, 75 insertions, 0 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in
new file mode 100644
index 0000000..0b073ba
--- /dev/null
+++ b/Python/Makefile.in
@@ -0,0 +1,75 @@
+# 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@
+
+
+# === Other things that are customizable but not by configure ===
+
+AR= ar
+MKDEP= mkdep
+SHELL= /bin/sh
+
+INCLDIR= $(srcdir)/../Py
+OPT= -g
+CFLAGS= $(OPT) -I$(INCLDIR)
+
+
+# === Fixed definitions ===
+
+SRCS= \
+ bltinmodule.c ceval.c cgensupport.c compile.c \
+ errors.c fmod.c frozenmain.c getcwd.c graminit.c \
+ import.c marshal.c mathmodule.o modsupport.c posixmodule.c \
+ pythonrun.c strerror.c strtod.c strtol.c \
+ structmember.c structmodule.c \
+ sysmodule.c timemodule.c traceback.c
+
+OBJS= \
+ bltinmodule.o ceval.o cgensupport.o compile.o \
+ errors.o fmod.o frozenmain.o getcwd.o graminit.o \
+ import.o marshal.o mathmodule.o modsupport.o posixmodule.o \
+ pythonrun.o strerror.o strtod.o strtol.o \
+ structmember.o structmodule.o \
+ sysmodule.o timemodule.o traceback.o
+
+LIB= libObjects.a
+
+MYLIBS= $(LIB) ../Objects/libObjects.a ../Parser/libParser.a
+
+SYSLIBS= -lm
+
+
+# === Rules ===
+
+all: $(LIB) python
+
+$(LIB): $(OBJS)
+ $(AR) cr $(LIB) $(OBJS)
+
+python: pythonmain.o config.o $(MYLIBS)
+ $(CC) pythonmain.o config.o $(MYLIBS) $(SYSLIBS) -o python
+
+clean:
+ -rm -f $(OBJS)
+ -rm -f core *~ [@,#]* *.old *.orig *.rej
+
+clobber: clean
+ -rm -f $(LIB) tags TAGS
+
+Makefile: Makefile.in ../config.status
+ (cd ..; $(SHELL) 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