Add -static flag for compilation

This commit is contained in:
Bad Diode 2022-03-05 20:34:36 +01:00
parent a453914653
commit c046d2a0a9
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ MOUSE_PATH ?= /dev/input/mice
C_DEFINES := -DKBD_PATH=\"$(KBD_PATH)\" -DMOUSE_PATH=\"$(MOUSE_PATH)\"
CC ?= cc
CFLAGS := -Wall -Wextra -pedantic
CFLAGS := -Wall -Wextra -pedantic -static
REL_FLAGS := -DNDEBUG -O2
DEB_FLAGS := -DDEBUG -O0 -g