aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2022-03-05 20:34:36 +0100
committerBad Diode <bd@badd10de.dev>2022-03-05 20:34:36 +0100
commitc046d2a0a97c71035001a654b445de8c0f9dc933 (patch)
treec6da0ec53a1aa5a765bb4550da906f16beeb52b6
parenta4539146533cd2cbf0f879e3ef4808f49471e7e5 (diff)
downloaduxnfb-c046d2a0a97c71035001a654b445de8c0f9dc933.tar.gz
uxnfb-c046d2a0a97c71035001a654b445de8c0f9dc933.zip
Add -static flag for compilation
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 10dc4fb..8c56874 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ MOUSE_PATH ?= /dev/input/mice
13C_DEFINES := -DKBD_PATH=\"$(KBD_PATH)\" -DMOUSE_PATH=\"$(MOUSE_PATH)\" 13C_DEFINES := -DKBD_PATH=\"$(KBD_PATH)\" -DMOUSE_PATH=\"$(MOUSE_PATH)\"
14 14
15CC ?= cc 15CC ?= cc
16CFLAGS := -Wall -Wextra -pedantic 16CFLAGS := -Wall -Wextra -pedantic -static
17 17
18REL_FLAGS := -DNDEBUG -O2 18REL_FLAGS := -DNDEBUG -O2
19DEB_FLAGS := -DDEBUG -O0 -g 19DEB_FLAGS := -DDEBUG -O0 -g