summaryrefslogtreecommitdiffstats
path: root/Parser/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-19 19:39:57 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-19 19:39:57 (GMT)
commitf6ca6aa8696ff232d2c755fb97cf9264c753d036 (patch)
tree12c6a607a0bc7474fe6f1427fb3de8826026f706 /Parser/Makefile.in
parent914fbd9ae67fd86cfe99e5e5139f2af82deb44e3 (diff)
downloadcpython-f6ca6aa8696ff232d2c755fb97cf9264c753d036.zip
cpython-f6ca6aa8696ff232d2c755fb97cf9264c753d036.tar.gz
cpython-f6ca6aa8696ff232d2c755fb97cf9264c753d036.tar.bz2
New build procedure.
Diffstat (limited to 'Parser/Makefile.in')
-rw-r--r--Parser/Makefile.in35
1 files changed, 20 insertions, 15 deletions
diff --git a/Parser/Makefile.in b/Parser/Makefile.in
index 1b8f1f8..48bfebc 100644
--- a/Parser/Makefile.in
+++ b/Parser/Makefile.in
@@ -4,6 +4,8 @@
# === Variables set by config.stat ===
+VERSION= @VERSION@
+
srcdir= @srcdir@
VPATH= @srcdir@
@@ -26,35 +28,38 @@ SHELL= /bin/sh
# === Fixed definitions ===
-PARSEROBJS= acceler.o grammar1.o \
- intrcheck.o listnode.o myreadline.o node.o parser.o \
+POBJS= acceler.o grammar1.o \
+ listnode.o node.o parser.o \
parsetok.o tokenizer.o bitset.o \
firstsets.o grammar.o metagrammar.o pgen.o \
printgrammar.o
-PGENOBJS= pgenmain.o
+OBJS= $(POBJS) intrcheck.o myreadline.o
-OBJS= $(PGENOBJS) $(PARSEROBJS)
+PGENMAIN= pgenmain.o
-PGEN= pgen
+PGENOBJS= $(PGENMAIN) $(POBJS)
-LIB= libParser.a
+DOBJS= $(PGENMAIN) $(OBJS)
+
+PGEN= pgen
+LIBRARY= ../libpython$(VERSION).a
# === Rules ===
-all: $(LIB) $(PGEN)
+all: $(PGEN) $(OBJS)
-$(LIB): $& $(PARSEROBJS)
- -rm -f $(LIB)
- $(AR) cr $(LIB) $(PARSEROBJS)
- $(RANLIB) $(LIB)
+# This target is used by the master Makefile to add the objects to the library
+add2lib: $(OBJS)
+ $(AR) cr $(LIBRARY) $(OBJS)
+ touch add2lib
-$(PGEN): $(PGENOBJS) $(LIB)
- $(CC) $(OPT) $(PGENOBJS) $(LIB) -o $(PGEN)
+$(PGEN): $(PGENOBJS)
+ $(CC) $(OPT) $(PGENOBJS) -o $(PGEN)
clean:
- -rm -f *.o core *~ [@,#]* *.old *.orig *.rej
+ -rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib
clobber: clean
-rm -f $(PGEN) *.a tags TAGS
@@ -64,7 +69,7 @@ Makefile: $(srcdir)/Makefile.in ../config.status
$(SHELL) config.status)
depend:
- $(MKDEP) $(CFLAGS) `echo $(OBJS) | tr ' ' '\012' | \
+ $(MKDEP) $(CFLAGS) `echo $(DOBJS) | tr ' ' '\012' | \
sed 's|\(.*\)\.o|$(srcdir)/\1.c|'`
.PRECIOUS: Makefile