diff --git a/Makefile b/Makefile index d00ada1..ba33c8a 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ clean: dist: clean $(BUILD)/$(BINARY).desktop mkdir -p $(BINARY)-$(VERSION) cp -R LICENSE Makefile CHANGELOG.md README.md src \ - config.mk protocols dwl.1 $(BUILD)/$(BINARY).desktop \ + config.mk protocols docs/dwl.1 $(BUILD)/$(BINARY).desktop \ $(BINARY)-$(VERSION) tar -caf $(BINARY)-$(VERSION).tar.gz $(BINARY)-$(VERSION) rm -rf $(BINARY)-$(VERSION) $(BUILD) @@ -89,7 +89,7 @@ install: $(BIN)/$(BINARY) $(BUILD)/$(BINARY).desktop cp -f $(BIN)/$(BINARY) $(DESTDIR)$(PREFIX)/bin chmod 755 $(DESTDIR)$(PREFIX)/bin/$(BINARY) mkdir -p $(DESTDIR)$(MANDIR)/man1 - cp -f dwl.1 $(DESTDIR)$(MANDIR)/man1 + cp -f docs/dwl.1 $(DESTDIR)$(MANDIR)/man1 chmod 644 $(DESTDIR)$(MANDIR)/man1/dwl.1 mkdir -p $(DESTDIR)$(DATADIR)/wayland-sessions cp -f $(BUILD)/$(BINARY).desktop $(DESTDIR)$(DATADIR)/wayland-sessions/$(BINARY).desktop diff --git a/config.mk b/config.mk index e87cc60..d6a0c5f 100644 --- a/config.mk +++ b/config.mk @@ -36,7 +36,7 @@ XWAYLAND = XLIBS = # Uncomment to build XWayland support #XWAYLAND = -DXWAYLAND -#XLIBS = xcb xcb-icccm +#XLIBS = xcb xcb-icccm.pc # dwl itself only uses C99 features, but wlroots' headers use anonymous unions (C11). # To avoid warnings about them, we do not use -std=c99 and instead of using the diff --git a/dwl.1 b/docs/dwl.1 similarity index 100% rename from dwl.1 rename to docs/dwl.1