1
0
mirror of https://gitlab.com/baco/dotconf.git synced 2024-06-18 13:57:04 +00:00
dotfiles/templates/base.mk

7 lines
144 B
Makefile

BUILD ?= debug
CFLAGS ?= -Wall -Wextra -std=c23 -Wpedantic
cflags.debug = -g -DDEBUG
cflags.release = -O2 -Werror
CFLAGS += ${cflags.${BUILD}}