From 82eeab074c3f5d99f11aa4f4eb8eef1e71457a89 Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Sun, 19 Mar 2023 02:20:14 +0100 Subject: [PATCH] config.mk --- config.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config.mk diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..a20be45 --- /dev/null +++ b/config.mk @@ -0,0 +1,15 @@ +# Configuration for rush00's Makefile + +# paths +PREFIX = ~/.local +INCDIR = include +OBJDIR = obj + +# includes +INCS = -I${INCDIR} + +# flags +CFLAGS = -Wall -Wextra -Werror ${INCS} + +# compiler and linker +CC = cc