From 82d58bc5e1e4b03457f7d48907ec2e5e52bdf5bd Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 12 May 2021 18:06:08 +0200 Subject: Initial commit with boilerplate SDL2 --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e9386d --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CC = gcc +CFLAGS = -Wall -Wextra $(shell pkgconf --cflags sdl2) +LDFLAGS = $(shell pkgconf --libs sdl2) + +NAME = fourier-series-viz + +all: $(NAME) + +$(NAME): main.o + $(CC) -o $@ $(LDFLAGS) $^ -- cgit