From 176149b9b5b9fc443d5a0d4fd0da3686e4c7a077 Mon Sep 17 00:00:00 2001 From: TanishTuteja Date: Tue, 19 Apr 2022 04:18:07 +0530 Subject: [PATCH] Removed unnecessary include flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7052784..4add41f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ OBJ_NAME = game.out all : Client Server Client: $(OBJS) - $(CXX) -I/usr/include/SDL2 $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME) + $(CXX) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME) Button.o: MyWindow.h