summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
Commit message (Collapse)AuthorAgeFilesLines
* Tweak clean targets yet again.Neil Schemenauer2001-02-031-15/+12
|
* add compile.h and symtable.h to list of header filesJeremy Hylton2001-02-021-0/+2
|
* Undo recent exclusion of test_fork1 and test_zlib. These tests don'tJeremy Hylton2001-02-021-1/+1
| | | | | | trigger my arbitrary exlusion rule, which is: takes more than 10 seconds of wall clock time on my machine. If these tests are going to be skipped, then a boatload of slower tests should be skipped, too.
* Added fork1, linuxaudiodev, sunaudiodev, and zlib to the tests skippedFred Drake2001-02-021-1/+2
| | | | by the quicktest target.
* add quicktest target -- runs test suite except for the eight slowest testsJeremy Hylton2001-02-011-0/+7
|
* Restore the automatic use of the oldsharedmods and oldsharedinstall targetsAndrew M. Kuchling2001-01-291-2/+3
|
* Don't use $< in normal make rules: it's not portable. Using $< inSjoerd Mullender2001-01-291-6/+6
| | | | inference rules (e.g. .c.o) is fine.
* - Fix buildno dependencies (I hope).Neil Schemenauer2001-01-271-9/+17
| | | | - Change one last EXE to EXEEXT.
* Remaining single-line change from patch #102409: to install shared modules,Andrew M. Kuchling2001-01-261-16/+10
| | | | | | | | | | | run setup.py with the --install-platlib flag so you can override 'prefix' when running make (e.g. make prefix=/tmp/python/usr/local install) Instead of using mkdir to create directories, use install -d (mkdir -p apparently isn't portable) Emacs make-mode reported line 371 as suspicious; removed the whitespace from that line.
* - Add CFLAGSFORSHARED variable. configure sets this to CCSHARED if LDLIBRARYNeil Schemenauer2001-01-261-32/+25
| | | | | | is a shared library. - Add PY_CFLAGS variable (flags used to compile the interpreter) - clobber now just removes object files, libraries and binaries
* Make module objects from Setup depend on Python.h headers.Neil Schemenauer2001-01-251-2/+4
|
* PEP 227 implementationJeremy Hylton2001-01-251-0/+1
| | | | | | A cell contains a reference to a single PyObject. It could be implemented as a mutable, one-element sequence, but the separate type has less overhead.
* Flat makefile based on toplevel Makefile.in and makefiles in buildNeil Schemenauer2001-01-241-0/+814
subdirectories. Those other makefiles will go away eventually.