From: Lukas Jiriste Date: Fri, 10 May 2024 06:47:59 +0000 (+0200) Subject: Remove whitespace from end of lines in Makefile X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=db640196f210a18456b765b05fd5f8236d6e3d76;p=42%2Fphilosophers.git Remove whitespace from end of lines in Makefile --- diff --git a/philo/Makefile b/philo/Makefile index 3c4245c..d2b2550 100644 --- 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 $@