Staging
v0.5.1
https://github.com/python/cpython
Revision 1e8b63eb887344ce2fe06b580eecbfba5a5be3dd authored by Guido van Rossum on 26 June 1996, 19:22:46 UTC, committed by Guido van Rossum on 26 June 1996, 19:22:46 UTC
1 parent db9a7bb
Raw File
Tip revision: 1e8b63eb887344ce2fe06b580eecbfba5a5be3dd authored by Guido van Rossum on 26 June 1996, 19:22:46 UTC
Document some process group stuff; mkdir mode arg optional; mkfifo.
Tip revision: 1e8b63e
Makefile
TOP=		..
PGENDIR=	$(TOP)/Parser
PGEN=		$(PGENDIR)/pgen
DESTH=		$(TOP)/Include/graminit.h
DESTC=		$(TOP)/Python/graminit.c

all:		install

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
back to top