From c046d2a0a97c71035001a654b445de8c0f9dc933 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Sat, 5 Mar 2022 20:34:36 +0100 Subject: Add -static flag for compilation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 10dc4fb..8c56874 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.1