From 4ebd9b8cf553359ebef8c8f8b2128e7b120bb251 Mon Sep 17 00:00:00 2001 From: stefonzo Date: Sun, 6 Feb 2022 20:47:58 -0600 Subject: initial commit --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0f9bb3c --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +OBJS = main.cpp simple.cpp +CC = g++ +COMPILER_FLAGS = -w -I/usr/local/include/SDL2/SDL_ttf.h +LINKER_FLAGS = -lSDL2 -lSDL2_ttf -lSDL2_image +OBJ_NAME = simple_test +all: $(OBJS) + $(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME) -- cgit v1.2.1