From 3422a87bdb087b6d927203e266beb71027779dbe Mon Sep 17 00:00:00 2001 From: "Dobbertin, Niclas" Date: Sat, 24 Jun 2023 23:04:23 +0200 Subject: init code --- config.mk | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config.mk (limited to 'config.mk') diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..f219d91 --- /dev/null +++ b/config.mk @@ -0,0 +1,14 @@ +# Initial Version +VERSION = 0.1 + +PKGS = sdl2 SDL2_gfx + +INCS = `pkg-config --cflags $(PKGS)` +LIBS = `pkg-config --libs $(PKGS)` -lSDL2_ttf -lm + +# flags +CFLAGS = -pedantic -Wall -Wextra -Werror -O3 ${INCS} +LDFLAGS = ${LIBS} + +# compiler and linker +CC = gcc -- cgit v1.2.3