From 660a556b7dd9b7a5cfb1f3e1e3a55a6975675f91 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 13 May 2021 10:43:36 +0200 Subject: Added better viz, Added README and preview screenshot --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 72b707a..5dd0c2b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -Wextra $(shell pkgconf --cflags sdl2 SDL2_gfx) +CFLAGS = -Wall -Wextra -pedantic $(shell pkgconf --cflags sdl2 SDL2_gfx) LDFLAGS = -lm $(shell pkgconf --libs sdl2 SDL2_gfx) NAME = fourier-series-viz @@ -8,3 +8,8 @@ all: $(NAME) $(NAME): main.o $(CC) -o $@ $(LDFLAGS) $^ + +fclean: + rm -f main.o $(NAME) + +re: fclean all -- cgit