aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-03-13 12:30:05 +0100
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-03-13 12:30:05 +0100
commit29cf61c65ad88533c350bcc0c920c3726558b7f5 (patch)
tree0a83101892a019e6152106ca4e9cbd2496c82f95
parentdcd45c9339b7fccc4238637c656d4e477e94b73e (diff)
downloadutils-29cf61c65ad88533c350bcc0c920c3726558b7f5.tar.gz
utils-29cf61c65ad88533c350bcc0c920c3726558b7f5.zip
Change the name of compiler from clang to cc
It's the same compiler in my machine, but, I prefer the second name.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 42da0c1..05e6e6d 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
# along with libutils. If not, see <https://www.gnu.org/licenses/>.
#
-CC = clang
+CC = cc
SRC != find src -name '*.c'
OBJ = ${SRC:.c=.o}