diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2001-02-03 17:18:21 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2001-02-03 17:18:21 (GMT) |
commit | 693291ba23d6406af58dd46066748a8d713fd1ba (patch) | |
tree | 0a8e029dbcc6c358652ae2425c3d641a448e4373 /Grammar | |
parent | e0d435777cd5a251c29984a897736934b8bdfaa4 (diff) | |
download | cpython-693291ba23d6406af58dd46066748a8d713fd1ba.zip cpython-693291ba23d6406af58dd46066748a8d713fd1ba.tar.gz cpython-693291ba23d6406af58dd46066748a8d713fd1ba.tar.bz2 |
Superseded by $(srcdir)/Makefile.pre.in.
Diffstat (limited to 'Grammar')
-rw-r--r-- | Grammar/Makefile.in | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/Grammar/Makefile.in b/Grammar/Makefile.in deleted file mode 100644 index f160c42..0000000 --- a/Grammar/Makefile.in +++ /dev/null @@ -1,54 +0,0 @@ -# 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.status === - -VERSION= @VERSION@ - -srcdir= @srcdir@ -VPATH= @srcdir@ - -CC= @CC@ -RANLIB= @RANLIB@ -AR= @AR@ - -DEFS= @DEFS@ -LIBS= @LIBS@ - - -# === Fixed definitions === - -TOP= .. -PGENDIR= $(TOP)/Parser -PGEN= $(PGENDIR)/pgen -DESTH= $(srcdir)/$(TOP)/Include/graminit.h -DESTC= $(srcdir)/$(TOP)/Python/graminit.c - -all: install - -# This target is used by the master Makefile to add the objects to the library -add2lib: - -install: $(DESTH) $(DESTC) - -depend: - -$(DESTH): graminit.h - cp graminit.h $(DESTH) - -$(DESTC): graminit.c - cp graminit.c $(DESTC) - -graminit.c graminit.h: $(PGEN) Grammar - $(PGEN) $(srcdir)/Grammar - -$(PGEN): - cd $(PGENDIR); $(MAKE) pgen - -clean: - -rm -f *.o core *~ [@,#]* *.old *.orig *.rej - -rm -f graminit.[ch] - -clobber: clean - -rm -f tags TAGS |