summaryrefslogtreecommitdiffstats
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Added a new variable TESTPYTHON which contains the path (and args) forBarry Warsaw1997-08-291-2/+3
| | | | the executable to use during regression testing.
* Should remove getbuildno.o/buildno files in clobber/distclean targets.Guido van Rossum1997-08-291-1/+2
|
* Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bashGuido van Rossum1997-08-201-2/+2
| | | | doesn't seem to grok @buildno.
* Need to define AR since it is used, and not all Makes define it by default.Guido van Rossum1997-08-191-0/+1
|
* Change the order in which things are built -- build the shared modulesGuido van Rossum1997-08-181-1/+7
| | | | after the main interpreter. Needed for AIX.
* Build getbuildno.o here, to adequately update it every time a newGuido van Rossum1997-07-251-1/+15
| | | | | | python executable is built. (It still won't reflect builds of the library only, but since the default make target builds the python executable, that's alright.)
* For use with Misc/Makefile.pre.in, the libainstall target must installGuido van Rossum1997-07-191-0/+1
| | | | Modules/python.o.
* Change libainstall again: need to install fewer files for "freeze";Guido van Rossum1997-07-191-4/+1
| | | | add Setup.local to list of installed files.
* New build procedure, using a single library libpython$(VERSION) atGuido van Rossum1997-07-191-13/+21
| | | | | | | | this level. The old libraries Modules/libModules.a etc. don't exist any more. The libainstall target is updated to match.
* Don't stop if the tests fail the first time around.Guido van Rossum1997-06-021-1/+1
|
* Force PYTHONPATH= empty when running test suite.Guido van Rossum1997-05-221-2/+2
|
* TESTPATH is no longer neededGuido van Rossum1997-05-131-3/+2
|
* Unroll the for loop used for building python, so the first threeGuido van Rossum1997-04-231-9/+19
| | | | | subdirectories can be made in parallel (unfortunately, Modules has to depend on all three).
* (Sjoerd:) Install getbuildinfo.c in config/ so extensions can use it.Guido van Rossum1997-04-111-0/+1
|
* target libinstall:Fred Drake1997-03-131-0/+2
| | | | | Create the .pyo files corresponding to the .py and .pyc files as well.
* Bump install version to 1.5.Guido van Rossum1997-01-221-1/+1
|
* Add the Lib/MACHDEP subdir to TESTPATH.Guido van Rossum1997-01-111-1/+1
|
* Add $(srcdir) in front of the test program's name (else it won't workGuido van Rossum1997-01-031-1/+1
| | | | when $(srcdir) isn't '.', i.e. when using VPATH).
* Switched over to use the new testregr.py test harness.Barry Warsaw1997-01-021-2/+4
|
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-10/+17
|
* Use 574PATH, not $(PATH) -- it's a shell variableGuido van Rossum1996-09-101-1/+1
|
* Fix $PATH and add $PYTHONPATH used to run regen.Guido van Rossum1996-08-281-1/+2
|
* Remove dependency of $(srcdir)/Lib/$(MACHDEP) on python, since it wouldGuido van Rossum1996-08-211-1/+1
| | | | try to do the mkdir whenever a new python has been built...
* MACHDEP and regen problem is now taken care ofGuido van Rossum1996-08-191-4/+3
|
* Collect together all detailed installation directories.Guido van Rossum1996-07-311-4/+7
|
* Add a variable so you can easily install more than one machdep directory.Guido van Rossum1996-07-301-1/+2
|
* Correct typo (intall -> install)Guido van Rossum1996-07-301-1/+1
|
* Some more install changes:Guido van Rossum1996-07-301-16/+26
| | | | | | | | | | - "make install" now depends on "make altinstall" for most of the work, and the binary is always installed as python<version> first, with a hard link to python made by "make bininstall". - Create the machine dependent directory if it doesn't exist, and attempt to run the regen script in it (unfortunately this will fail unless you have h2py in your $PATH - help!)
* More changes to install targets.Guido van Rossum1996-07-301-28/+85
|
* Append version number to library install directory.Guido van Rossum1996-07-241-10/+23
| | | | | | | "make libinstall" no longer implies "make sharedinstall". "make altinstall" and "make altbininstall" install the python binary with a version number, for tentative installations (this does not install the include files or man page).
* Use INSTALL_PROGRAM for makesetupGuido van Rossum1996-07-211-1/+1
|
* split autoconf target in twoGuido van Rossum1996-06-281-1/+2
|
* Some cleanup; make for loops over subdirs less noisy, more informative.Guido van Rossum1996-06-201-25/+27
|
* Added some comments to the top.Guido van Rossum1996-05-281-26/+100
| | | | | | | | | | | | Changed install targets so (1) "make install" installs everything; (2) more directories are built as needed; (3) the X11R5 shell script install-sh is used (always). (The script can't be called install.sh since some Make versions have a default rule that copies "foo.sh" to "foo" when making "foo".) Added target "smelly" which checks for non-Py-prefixed exported symbols.
* remove Modules/Makefile on distcleanGuido van Rossum1995-09-181-0/+1
|
* Better fix for creating extended pythons. (getpath.c needs to beSjoerd Mullender1995-08-091-1/+0
| | | | recompiled for the extensions)
* Fixed creation of extended python.Sjoerd Mullender1995-08-091-0/+2
|
* pass prefix etc. on when making sharedinstall; install getpath.cGuido van Rossum1995-08-071-2/+14
|
* the usualGuido van Rossum1995-03-221-2/+3
|
* the usualGuido van Rossum1995-02-131-0/+1
|
* define INSTALL_PROGRAM and INSTALL_DATAGuido van Rossum1995-01-201-12/+14
|
* be more careful about building Modules/Makefile.preGuido van Rossum1995-01-171-1/+5
|
* run config.status after recheckGuido van Rossum1995-01-121-0/+1
|
* README: changed URL format to <URL:...>; added section on Tk.Guido van Rossum1995-01-041-8/+9
| | | | | | | Makefile.in: run config.status in "make recheck". configure.in: add test for hypot(). config.h.in, configure: since configure.in changed. rest: the usual boring stuff.
* The usual changes when a release is nearing...Guido van Rossum1995-01-021-11/+4
|
* run sharedinstall; add BINDIR macros etcGuido van Rossum1994-10-201-6/+14
|
* apply ranoib to installed librariesGuido van Rossum1994-10-101-0/+2
|
* Shared library supportGuido van Rossum1994-09-121-0/+21
|
* Makefile.in: run compileall on installed library;Guido van Rossum1994-08-301-5/+7
| | | | rest: the usual
* Simplify value of INSTALL (always 'cp').Guido van Rossum1994-08-191-1/+1
| | | | | | Pass value of OPT from configure environment to Makefile. Add check for limits.h. Use <directory>/libreadline.a instead of -lreadline.