diff options
| author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-07-06 23:28:49 -0500 |
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-07-06 23:41:42 -0500 |
| commit | 0eff78d6c268f7dc1a16861f051d9cd2108161a4 (patch) | |
| tree | 528d0f9c0ca46d059176d7143fe37a8e7419976d | |
| parent | arrange client's monitor if size has change since last commit (diff) | |
| download | dwl-0eff78d6c268f7dc1a16861f051d9cd2108161a4.tar.gz dwl-0eff78d6c268f7dc1a16861f051d9cd2108161a4.tar.bz2 dwl-0eff78d6c268f7dc1a16861f051d9cd2108161a4.tar.xz dwl-0eff78d6c268f7dc1a16861f051d9cd2108161a4.tar.zst dwl-0eff78d6c268f7dc1a16861f051d9cd2108161a4.zip | |
include DWLCFLAGS into linking step
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ LDLIBS = `pkg-config --libs $(PKGS)` $(LIBS) # to your build system yourself and provide them in the include path. all: dwl dwl: dwl.o util.o - $(CC) dwl.o util.o $(LDLIBS) $(LDFLAGS) -o $@ + $(CC) dwl.o util.o $(LDLIBS) $(LDFLAGS) $(DWLCFLAGS) -o $@ dwl.o: dwl.c config.mk config.h client.h xdg-shell-protocol.h wlr-layer-shell-unstable-v1-protocol.h idle-protocol.h util.o: util.c util.h |
