projects
/
42
/
philosophers.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
958154e
)
Remove whitespace from end of lines in Makefile
author
Lukas Jiriste
<ljiriste@student.42prague.com>
Fri, 10 May 2024 06:47:59 +0000
(08:47 +0200)
committer
Lukas Jiriste
<ljiriste@student.42prague.com>
Fri, 10 May 2024 06:47:59 +0000
(08:47 +0200)
philo/Makefile
patch
|
blob
|
history
diff --git
a/philo/Makefile
b/philo/Makefile
index 3c4245cff8c7e7a0b98f60c7a872d7f3bfb8ced1..d2b25509028f085b9e27642afec770809e699196 100644
(file)
--- a/
philo/Makefile
+++ b/
philo/Makefile
@@
-1,7
+1,7
@@
CC := gcc
CFLAGS := -Wall -Wextra -Werror -Wpedantic
--std=c99
+-std=c99
NAME := philo
INCDIR := .
@@
-26,7
+26,7
@@
debug : CFLAGS += -g
debug : $(NAME)
$(NAME) : $(OBJS)
- $(CC) $(CFLAGS) $(OBJS) -o $@
+ $(CC) $(CFLAGS) $(OBJS) -o $@
%.o : %.c
$(CC) $(CFLAGS) -c $< -o $@