summaryrefslogtreecommitdiffstats
path: root/Parser/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-24 10:36:57 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-24 10:36:57 (GMT)
commit6fa6343f0e0837314ee86515804b3f3cd5945cbb (patch)
tree566b9a5a3ba9f58f97c5537e78fdea9c458f4c2c /Parser/Makefile.in
parent60a578aa4e8fa37a562d24870eb921719d4a6c9b (diff)
downloadcpython-6fa6343f0e0837314ee86515804b3f3cd5945cbb.zip
cpython-6fa6343f0e0837314ee86515804b3f3cd5945cbb.tar.gz
cpython-6fa6343f0e0837314ee86515804b3f3cd5945cbb.tar.bz2
None
Diffstat (limited to 'Parser/Makefile.in')
-rw-r--r--Parser/Makefile.in26
1 files changed, 14 insertions, 12 deletions
diff --git a/Parser/Makefile.in b/Parser/Makefile.in
index 01d14f2..b5649aa 100644
--- a/Parser/Makefile.in
+++ b/Parser/Makefile.in
@@ -9,23 +9,25 @@ 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
-INCLDIR= $(srcdir)/../Py
-OPT= -g
-CFLAGS= $(OPT) -I$(INCLDIR)
-
# === Fixed definitions ===
-PARSEROBJS= acceler.o fgetsintr.o grammar1.o \
- intrcheck.o listnode.o node.o parser.o \
+PARSEROBJS= acceler.o grammar1.o \
+ intrcheck.o listnode.o myreadline.o node.o parser.o \
parsetok.o tokenizer.o bitset.o \
firstsets.o grammar.o metagrammar.o pgen.o \
printgrammar.o
@@ -33,7 +35,7 @@ PARSEROBJS= acceler.o fgetsintr.o grammar1.o \
PGENOBJS= pgenmain.o
PARSERSRCS= acceler.c fgetsintr.c grammar1.c \
- intrcheck.c listnode.c node.c parser.c \
+ intrcheck.c listnode.c myreadline.c node.c parser.c \
parsetok.c tokenizer.c bitset.c \
firstsets.c grammar.c metagrammar.c pgen.c \
printgrammar.c
@@ -51,19 +53,19 @@ all: $(LIB) $(PGEN)
$(LIB): $(PARSEROBJS)
$(AR) cr $(LIB) $(PARSEROBJS)
+ $(RANLIB) $(LIB)
$(PGEN): $(PGENOBJS) $(LIB)
$(CC) $(PGENOBJS) $(LIB) -o $(PGEN)
clean:
- -rm -f $(PARSEROBJS) $(PGENOBJS)
- -rm -f core *~ [@,#]* *.old *.orig *.rej
+ -rm -f *.o core *~ [@,#]* *.old *.orig *.rej
clobber: clean
- -rm -f $(PGEN) $(LIB) tags TAGS
+ -rm -f $(PGEN) *.a tags TAGS
-Makefile: Makefile.in ../config.status
- (cd ..; $(SHELL) config.status)
+Makefile: Makefile.in $(TOP)/config.status
+ CONFIG_FILES=Makefile $(SHELL) $(TOP)/config.status
depend: $(PARSERSRCS) $(PGENSRCS)
$(MKDEP) $(CFLAGS) $(PARSERSRCS) $(PGENSRCS)