diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-25 11:38:01 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-07-03 13:27:52 -0600 |
commit | 2db0a2e8ef57acceeb3331a312dc3388a1710b29 (patch) | |
tree | c6c657994b40f9a1729772a8e7c8f77dd8b2d6e0 /Makefile | |
parent | ab5c554d096ebca8446b7b1354c49be014b8b747 (diff) |
use round(3) and ceilf(3) from the math library
ΔSLOC: -1
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ DWLDEVCFLAGS = -g -pedantic -Wall -Wextra -Wdeclaration-after-statement \ # CFLAGS / LDFLAGS PKGS = wlroots wayland-server xkbcommon libinput $(XLIBS) DWLCFLAGS = `$(PKG_CONFIG) --cflags $(PKGS)` $(DWLCPPFLAGS) $(DWLDEVCFLAGS) $(CFLAGS) -LDLIBS = `$(PKG_CONFIG) --libs $(PKGS)` $(LIBS) +LDLIBS = `$(PKG_CONFIG) --libs $(PKGS)` -lm $(LIBS) all: dwl dwl: dwl.o util.o |