The 0.5 release happened on 2/15, not on 2/14. :-)
[python/dscho.git] / Parser / Makefile.in
blob539668059671ca3d41a31d1a422d21d73fc002a4
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 VERSION= @VERSION@
9 srcdir= @srcdir@
10 VPATH= @srcdir@
12 CC= @CC@
13 RANLIB= @RANLIB@
14 AR= @AR@
16 DEFS= @DEFS@
17 LIBS= @LIBS@
20 # === Other things that are customizable but not by configure ===
22 INCLDIR= $(srcdir)/../Include
23 OPT= @OPT@
24 CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS)
26 MKDEP= mkdep
27 SHELL= /bin/sh
30 # === Fixed definitions ===
32 POBJS= acceler.o grammar1.o \
33 listnode.o node.o parser.o \
34 parsetok.o tokenizer.o bitset.o \
35 metagrammar.o
37 AROBJS= $(POBJS) myreadline.o
38 OBJS= $(AROBJS) intrcheck.o
41 PGENMAIN= pgenmain.o
43 PGOBJS= firstsets.o grammar.o pgen.o printgrammar.o
45 PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
47 DOBJS= $(PGENMAIN) $(OBJS) $(PGOBJS)
49 PGEN= pgen
51 LIBRARY= ../libpython$(VERSION).a
53 # === Rules ===
55 all: $(PGEN) $(OBJS)
57 # This target is used by the master Makefile to add the objects to the library
58 add2lib: $(OBJS)
59 $(AR) cr $(LIBRARY) $(AROBJS)
60 if test ! -f ../Modules/hassignal; \
61 then echo adding intrcheck.o; $(AR) r $(LIBRARY) intrcheck.o; \
62 else echo leaving intrcheck.o out; fi
63 touch add2lib
65 $(PGEN): $(PGENOBJS)
66 $(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)
68 clean:
69 -rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib
71 clobber: clean
72 -rm -f $(PGEN) *.a tags TAGS
74 Makefile: $(srcdir)/Makefile.in ../config.status
75 (cd ..; CONFIG_FILES=Parser/Makefile CONFIG_HEADERS= \
76 $(SHELL) config.status)
78 depend:
79 $(MKDEP) $(CFLAGS) `echo $(DOBJS) | tr ' ' '\012' | \
80 sed 's|\(.*\)\.o|$(srcdir)/\1.c|'`
82 .PRECIOUS: Makefile
84 acceler.o: acceler.c
85 grammar1.o: grammar1.c
86 intrcheck.o: intrcheck.c
87 listnode.o: listnode.c
88 myreadline.o: myreadline.c
89 node.o: node.c
90 parser.o: parser.c
91 parsetok.o: parsetok.c
92 tokenizer.o: tokenizer.c
93 bitset.o: bitset.c
94 firstsets.o: firstsets.c
95 grammar.o: grammar.c
96 metagrammar.o: metagrammar.c
97 pgen.o: pgen.c
98 printgrammar.o: printgrammar.c
99 pgenmain.o: pgenmain.c
101 # DO NOT DELETE THIS LINE -- mkdep uses it.
102 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
103 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY