From bb57c8e853fc174eb7668bdff5dfa23e1225d379 Mon Sep 17 00:00:00 2001 From: opfez Date: Sun, 26 Sep 2021 19:13:56 +0200 Subject: [PATCH] renaming --- Makefile | 2 +- graphics.c => main.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename graphics.c => main.c (100%) diff --git a/Makefile b/Makefile index 2230f62..e69be41 100644 --- a/Makefile +++ b/Makefile @@ -2,5 +2,5 @@ CC = clang CFLAGS = -Wall -Wextra -std=c99 -pedantic -O2 LIBS = -lSDL2 -lm -graphics: graphics.c +out: main.c $(CC) $(CFLAGS) $(LIBS) $< -o $@ diff --git a/graphics.c b/main.c similarity index 100% rename from graphics.c rename to main.c