commit db36c69628afdec6119c77ae34ed7631a344ab93 parent 07269b08b5d0cfae71f9f16e0a08678e081c2e0b Auteur: Selve <selve@asteride.xyz> Date: Sat, 2 Dec 2023 22:27:34 -0500 correction d'une faute de frappe Diffstat:
M | Makefile | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,11 +1,11 @@ -COPT = -Wall -Werror -Wextra -Wpedantic --sttd=c89 +COPT = -Wall -Werror -Wextra -Wpedantic --std=c89 CC = cc PREFIX = "/usr/local/bin" all: iusc iusc: iusc.c - ${CC} ${OPT} -o "$@" iusc.c + ${CC} ${COPT} -o "$@" iusc.c install: iusc install -m 755 iusc ${PREFIX}/iusc