Remove whitespace from end of lines in Makefile
authorLukas Jiriste <ljiriste@student.42prague.com>
Fri, 10 May 2024 06:47:59 +0000 (08:47 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Fri, 10 May 2024 06:47:59 +0000 (08:47 +0200)
philo/Makefile

index 3c4245cff8c7e7a0b98f60c7a872d7f3bfb8ced1..d2b25509028f085b9e27642afec770809e699196 100644 (file)
@@ -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 $@