summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-26 18:24:40 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-26 18:24:40 (GMT)
commit6085e32a753a01e1ea0db54517a02e0fe4c1a76e (patch)
treed6a318efa92596fad342f99efa78195895157ab6 /Makefile.in
parent1dfec14f833f284c85a661166e237006dd1d773e (diff)
downloadcpython-6085e32a753a01e1ea0db54517a02e0fe4c1a76e.zip
cpython-6085e32a753a01e1ea0db54517a02e0fe4c1a76e.tar.gz
cpython-6085e32a753a01e1ea0db54517a02e0fe4c1a76e.tar.bz2
Alpha 1.0.0
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index b898af6..36d213a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,13 +1,16 @@
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
localclean:
-rm -f core *~ [@,#]* *.old *.orig *.rej
- -(cd Py; rm -f core *~ [@,#]* *.old *.orig *.rej)
+ -(cd Include; rm -f core *~ [@,#]* *.old *.orig *.rej)
clean: localclean
-for i in $(SUBDIRS); do \
@@ -36,3 +39,7 @@ config.status: configure
configure: configure.in
autoconf
+tar: dist.tar.Z
+
+dist.tar.Z: $(DIST)
+ tar cf - $(DIST) | compress >dist.tar.Z