config.mk

This commit is contained in:
Timo Schmidt 2023-03-19 02:20:14 +01:00
parent 49478cb64d
commit 82eeab074c
1 changed files with 15 additions and 0 deletions

15
config.mk Normal file
View File

@ -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