Tell python not to spam the source tree with .pyc files.
This only has an effect on python 2.6 and above.
This commit is contained in:
parent
fcc50ebb4a
commit
bc8abb6fec
|
@ -8,6 +8,10 @@
|
|||
# directly.
|
||||
SHELL := /bin/bash
|
||||
|
||||
# Tell python not to spam the source tree with .pyc files. This
|
||||
# only has an effect on python 2.6 and above.
|
||||
export PYTHONDONTWRITEBYTECODE := 1
|
||||
|
||||
# Standard source directories.
|
||||
SRC_DOCS:= $(TOPDIR)docs
|
||||
# TODO: Enforce some kind of layering; only add include paths
|
||||
|
|
Loading…
Reference in New Issue