Skip to content

Commit 5936d75

Browse files
committed
corrections
1 parent 494eb39 commit 5936d75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

0x1C-makefiles/4-Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SRC = main.c school.c
33
OBJ = $(SRC:.c=.o)
44
NAME = school
55
RM = rm -f
6-
CFLAGS = -wall -werror -wextra -pedantic
6+
CFLAGS = -Wall -Werror -Wextra -pedantic
77

88
all: $(OBJ)
99
$(CC) $(OBJ) -o $(NAME)
@@ -17,3 +17,4 @@ oclean:
1717
fclean: clean oclean
1818

1919
re: fclean all
20+

0 commit comments

Comments
 (0)