]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Alpha 1.0.0
authorGuido van Rossum <guido@python.org>
Sun, 26 Dec 1993 18:24:40 +0000 (18:24 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 26 Dec 1993 18:24:40 +0000 (18:24 +0000)
Makefile.in
README
configure
configure.in

index b898af6d048e8723adccd11101908a0bec156510..36d213a4ed5b57fcd6e6f750eb4ebd90ba1bdf45 100644 (file)
@@ -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
diff --git a/README b/README
index df74e00c8d6c3ed1def7cfecac7454dd7beed6e2..e5ea8732ff4ac1566bc07f2cfc7b9b52230e3caf 100644 (file)
--- a/README
+++ b/README
@@ -25,10 +25,12 @@ done so.)
 
        make
 
-This will recursively run Make in each of the Parser, Objects and
-Python subdirectories.  In Parser it builds an executable "pgen" and a
-library libParser.a.  In Objects it builds a library libObjects.a.  In
-Python it builds a library libPython.a and an executable "python".
+This will recursively run Make in each of the Parser, Grammar, Objects
+and Python subdirectories.  In Parser it builds an executable "pgen"
+and a library libParser.a.  In Grammar it runs Parser/pgen to generate
+graminit.[ch] which are copied to Includes and Python, respectively.
+In Objects it builds a library libObjects.a.  In Python it builds a
+library libPython.a and an executable "python".
 
 (3) Test the resulting executable:
 
index eb7fb97be45f533d2bae330c6c65915ff7e7b1ed..43bc6865e91a5d83c2f529b2777056adcbe1e7db 100755 (executable)
--- a/configure
+++ b/configure
@@ -96,7 +96,7 @@ compile='${CC-cc} $CFLAGS conftest.c -o conftest $LIBS >/dev/null 2>&1'
 
 # A filename unique to this package, relative to the directory that
 # configure is in, which we can look for to find out if srcdir is correct.
-unique_file=Py/object.h
+unique_file=Include/object.h
 
 # Find the source files, if location was not specified.
 if test -z "$srcdir"; then
index a01f12614d81e5307ceefb610a41c2bc8168d025..f70eb72ce480a2373ce357d99310714e86661597 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(Py/object.h)
+AC_INIT(Include/object.h)
 
 # checks for alternative programs
 AC_PROG_CC