diff options
author | Joe <rbo@gmx.us> | 2025-02-27 21:12:04 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2025-02-27 21:12:04 +0100 |
commit | 9f5a2953bb21eb4561eed19b8b162c843413bf1f (patch) | |
tree | c5a82829f876b82e6f314d03c83156c998bb5068 /Makefile | |
parent | bump version to 0.7 (diff) | |
download | dwl-9f5a2953bb21eb4561eed19b8b162c843413bf1f.tar.gz dwl-9f5a2953bb21eb4561eed19b8b162c843413bf1f.tar.bz2 dwl-9f5a2953bb21eb4561eed19b8b162c843413bf1f.tar.xz dwl-9f5a2953bb21eb4561eed19b8b162c843413bf1f.tar.zst dwl-9f5a2953bb21eb4561eed19b8b162c843413bf1f.zip |
jozan
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,12 +7,12 @@ include config.mk DWLCPPFLAGS = -I. -DWLR_USE_UNSTABLE -D_POSIX_C_SOURCE=200809L \ -DVERSION=\"$(VERSION)\" $(XWAYLAND) DWLDEVCFLAGS = -g -pedantic -Wall -Wextra -Wdeclaration-after-statement \ - -Wno-unused-parameter -Wshadow -Wunused-macros -Werror=strict-prototypes \ + -Wno-unused-parameter -Wshadow -Wunused-macros \ -Werror=implicit -Werror=return-type -Werror=incompatible-pointer-types \ -Wfloat-conversion # CFLAGS / LDFLAGS -PKGS = wlroots-0.18 wayland-server xkbcommon libinput $(XLIBS) +PKGS = wlroots-0.18 wayland-server xkbcommon libinput pixman-1 fcft $(XLIBS) DWLCFLAGS = `$(PKG_CONFIG) --cflags $(PKGS)` $(DWLCPPFLAGS) $(DWLDEVCFLAGS) $(CFLAGS) LDLIBS = `$(PKG_CONFIG) --libs $(PKGS)` -lm $(LIBS) @@ -49,7 +49,7 @@ xdg-shell-protocol.h: config.h: cp config.def.h $@ clean: - rm -f dwl *.o *-protocol.h + rm -f dwl *.o *-protocol.h config.h dist: clean mkdir -p dwl-$(VERSION) |