Add -static flag for compilation
This commit is contained in:
parent
a453914653
commit
c046d2a0a9
2
Makefile
2
Makefile
|
@ -13,7 +13,7 @@ MOUSE_PATH ?= /dev/input/mice
|
||||||
C_DEFINES := -DKBD_PATH=\"$(KBD_PATH)\" -DMOUSE_PATH=\"$(MOUSE_PATH)\"
|
C_DEFINES := -DKBD_PATH=\"$(KBD_PATH)\" -DMOUSE_PATH=\"$(MOUSE_PATH)\"
|
||||||
|
|
||||||
CC ?= cc
|
CC ?= cc
|
||||||
CFLAGS := -Wall -Wextra -pedantic
|
CFLAGS := -Wall -Wextra -pedantic -static
|
||||||
|
|
||||||
REL_FLAGS := -DNDEBUG -O2
|
REL_FLAGS := -DNDEBUG -O2
|
||||||
DEB_FLAGS := -DDEBUG -O0 -g
|
DEB_FLAGS := -DDEBUG -O0 -g
|
||||||
|
|
Loading…
Reference in New Issue