diff options
author | 2023-03-13 12:30:05 +0100 | |
---|---|---|
committer | 2023-03-13 12:30:05 +0100 | |
commit | 29cf61c65ad88533c350bcc0c920c3726558b7f5 (patch) | |
tree | 0a83101892a019e6152106ca4e9cbd2496c82f95 | |
parent | dcd45c9339b7fccc4238637c656d4e477e94b73e (diff) | |
download | utils-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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} |