diff options
| author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-06-20 12:36:56 -0600 | 
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2024-08-14 12:00:52 -0600 | 
| commit | e454f7ae812ca5ceac372223d42ffea252ff012a (patch) | |
| tree | 12d10f04a875a6e2c2cd248d500aac95a94b5b98 /Makefile | |
| parent | 334bbe6f0f5e4f77789b42ac9e5607d5076aef1b (diff) | |
allow the use of non-system wlroots library
References: https://codeberg.org/dwl/dwl/issues/646#issuecomment-2032644
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -12,9 +12,9 @@ DWLDEVCFLAGS = -g -Wpedantic -Wall -Wextra -Wdeclaration-after-statement \  	-Wfloat-conversion  # CFLAGS / LDFLAGS -PKGS      = wlroots-0.19 wayland-server xkbcommon libinput $(XLIBS) -DWLCFLAGS = `$(PKG_CONFIG) --cflags $(PKGS)` $(DWLCPPFLAGS) $(DWLDEVCFLAGS) $(CFLAGS) -LDLIBS    = `$(PKG_CONFIG) --libs $(PKGS)` -lm $(LIBS) +PKGS      = wayland-server xkbcommon libinput $(XLIBS) +DWLCFLAGS = `$(PKG_CONFIG) --cflags $(PKGS)` $(WLR_INCS) $(DWLCPPFLAGS) $(DWLDEVCFLAGS) $(CFLAGS) +LDLIBS    = `$(PKG_CONFIG) --libs $(PKGS)` $(WLR_LIBS) -lm $(LIBS)  all: dwl  dwl: dwl.o util.o | 
