summaryrefslogtreecommitdiffstats
path: root/Grammar/Makefile
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>2000-08-17 11:38:18 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>2000-08-17 11:38:18 (GMT)
commit59bb0800dfa75cc8ee4657926cc5b7cf2c66f3e4 (patch)
tree33101fd8c1552223dc681b3614cb7f3e706a4d19 /Grammar/Makefile
parent227b1204681a8bd7077bf1f8e9098b7e2e9f4c13 (diff)
downloadcpython-59bb0800dfa75cc8ee4657926cc5b7cf2c66f3e4.zip
cpython-59bb0800dfa75cc8ee4657926cc5b7cf2c66f3e4.tar.gz
cpython-59bb0800dfa75cc8ee4657926cc5b7cf2c66f3e4.tar.bz2
Fix up problems when compiling in a directory other than the source
directory.
Diffstat (limited to 'Grammar/Makefile')
-rw-r--r--Grammar/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/Grammar/Makefile b/Grammar/Makefile
deleted file mode 100644
index a490284..0000000
--- a/Grammar/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-TOP= ..
-PGENDIR= $(TOP)/Parser
-PGEN= $(PGENDIR)/pgen
-DESTH= $(TOP)/Include/graminit.h
-DESTC= $(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) Grammar
-
-$(PGEN):
- cd $(PGENDIR); make pgen
-
-clean:
- -rm -f *.o core *~ [@,#]* *.old *.orig *.rej
- -rm -f graminit.[ch]
-
-clobber: clean
- -rm -f tags TAGS