Staging
v0.8.1
https://github.com/python/cpython
Revision 4290161d2dccf362002561a8404760617eccd80f authored by Guido van Rossum on 03 January 1994, 14:07:23 UTC, committed by Guido van Rossum on 03 January 1994, 14:07:23 UTC
1 parent 93fcb9b
Raw File
Tip revision: 4290161d2dccf362002561a8404760617eccd80f authored by Guido van Rossum on 03 January 1994, 14:07:23 UTC
s.avail() has met its maker
Tip revision: 4290161
Makefile.in
MAKE=		make

SUBDIRS=	Parser Grammar Objects Python
SUBDIRSTOO=	Include Extensions readline
DISTFILES=	README Makefile configure configure.in
DIST=		$(DISTFILES) $(SUBDIRS) $(SUBDIRSTOO)

all:		config.status
		for i in $(SUBDIRS); do \
			(echo $$i; cd $$i; $(MAKE) all); \
		done

tags:		ctags -t Parser/*.[ch] Objects/*.[ch] Python/*.[ch] Include/*.h

TAGS:		etags -t Parser/*.[ch] Objects/*.[ch] Python/*.[ch] Include/*.h

depend:
		for i in $(SUBDIRS); do \
			(echo $$i; cd $$i; $(MAKE) depend); \
		done

localclean:
		-rm -f core *~ [@,#]* *.old *.orig *.rej
		-(cd Include; rm -f core *~ [@,#]* *.old *.orig *.rej)

clean:		localclean
		-for i in $(SUBDIRS); do \
			(echo $$i; cd $$i; $(MAKE) clean); \
		done

localclobber:	localclean
		-rm -f tags TAGS config.status

clobber:	localclobber
		-for i in $(SUBDIRS); do \
			(echo $$i; cd $$i; $(MAKE) clobber); \
		done

distclean:	clobber
		-for i in $(SUBDIRS); do \
			if test -f $$i/Makefile.in; then \
				rm -f $$i/Makefile; \
			fi; \
		done

Makefiles:	config.status
		./config.status

config.status:	configure
		./configure

configure:	configure.in
		autoconf
 
tar:		dist.tar.Z

dist.tar.Z:	$(DIST)
		tar cf - $(DIST) | compress >dist.tar.Z
back to top