This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository python-efl.
View the commit online.
commit b4801377e4aab2f19c6ea0ec03af16195c8b91a4
Author: Dave Andreoli <[email protected]>
AuthorDate: Sat Aug 30 18:15:51 2025 +0200
Makefile: use clang by default
---
Makefile | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/Makefile b/Makefile
index 0dccb38..cb0776e 100644
--- a/Makefile
+++ b/Makefile
@@ -5,10 +5,6 @@
# want to type less or do not want to learn the python
# setup syntax.
#
-# NOTE: This file is also used to discriminate when we are building from
-# stable tarballs (in this case we disable cython by default) or from git
-# sources as the Makefile is not distributed.
-#
# Usage:
#
# make <cmd> to build using the default python interpreter
@@ -17,16 +13,17 @@
PY = python
+CC = clang
.PHONY: build
build:
- $(PY) -m build
+ CC=$(CC) $(PY) -m build
.PHONY: dist
dist:
- $(PY) -m build --sdist
+ CC=$(CC) $(PY) -m build --sdist
@cd dist/; for f in `ls *.tar.*` ; do \
echo Generating sha256 for: $$f ; \
sha256sum $$f > $$f.sha256; \
@@ -35,7 +32,7 @@ dist:
.PHONY: install
install:
- $(PY) -m pip install . --verbose
+ CC=$(CC) $(PY) -m pip install . --verbose
.PHONY: uninstall
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.