diff options
author | Guido van Rossum <guido@python.org> | 1997-08-02 02:06:20 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-02 02:06:20 (GMT) |
commit | d0924f45853c4157718859301800dc4a37aead33 (patch) | |
tree | dd737a4ac72f8c277a9f4048b399a551573ff6da | |
parent | c46d22e52e7c880e6ab2d743c27235322ad95317 (diff) | |
download | cpython-d0924f45853c4157718859301800dc4a37aead33.zip cpython-d0924f45853c4157718859301800dc4a37aead33.tar.gz cpython-d0924f45853c4157718859301800dc4a37aead33.tar.bz2 |
Add a simple way to enable purify; now you can set the Make variable
PURIFY (e.g. in the Setup file or on the make command line) to point
to the purify command, to run purify.
-rw-r--r-- | Modules/Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 21f22b9..0abe6ef 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -70,7 +70,7 @@ INSTALL_SHARED= ${INSTALL} -m 555 # === Variables that are customizable by hand or by inclusion in Setup === -LINKCC= $(CC) +LINKCC= $(PURIFY) $(CC) INCLDIR= $(srcdir)/../Include CONFIGINCLDIR= .. CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS) |