From db640196f210a18456b765b05fd5f8236d6e3d76 Mon Sep 17 00:00:00 2001 From: Lukas Jiriste Date: Fri, 10 May 2024 08:47:59 +0200 Subject: [PATCH] Remove whitespace from end of lines in Makefile --- philo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 $@ -- 2.30.2