2022-05-25 22:04:19 +00:00
|
|
|
.POSIX:
|
|
|
|
.SUFFIXES:
|
2020-04-11 22:27:19 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
include config.mk
|
2021-04-15 18:04:31 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
# flags for compiling
|
|
|
|
DWLCPPFLAGS = -I. -DWLR_USE_UNSTABLE -DVERSION=\"$(VERSION)\"
|
2022-05-09 20:20:37 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
# Wayland utils
|
|
|
|
WAYLAND_PROTOCOLS = `pkg-config --variable=pkgdatadir wayland-protocols`
|
|
|
|
WAYLAND_SCANNER = `pkg-config --variable=wayland_scanner wayland-scanner`
|
2021-04-15 18:04:31 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
# CFLAGS / LDFLAGS
|
2022-05-30 21:18:31 +00:00
|
|
|
PKGS = wlroots wayland-server xkbcommon libinput $(XLIBS)
|
2022-05-25 22:04:19 +00:00
|
|
|
DWLCFLAGS = `pkg-config --cflags $(PKGS)` $(DWLCPPFLAGS) $(CFLAGS) $(XWAYLAND)
|
2022-06-10 17:08:36 +00:00
|
|
|
LDLIBS = `pkg-config --libs $(PKGS)` $(LIBS)
|
2021-04-19 13:05:35 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
# build rules
|
2021-04-15 18:04:31 +00:00
|
|
|
|
2020-04-11 22:27:19 +00:00
|
|
|
# wayland-scanner is a tool which generates C headers and rigging for Wayland
|
|
|
|
# protocols, which are specified in XML. wlroots requires you to rig these up
|
|
|
|
# to your build system yourself and provide them in the include path.
|
2022-05-25 22:04:19 +00:00
|
|
|
all: dwl
|
2022-05-30 21:23:14 +00:00
|
|
|
dwl: dwl.o util.o
|
2022-07-07 04:28:49 +00:00
|
|
|
$(CC) dwl.o util.o $(LDLIBS) $(LDFLAGS) $(DWLCFLAGS) -o $@
|
2022-05-25 22:04:19 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
# wayland scanner rules to generate .h / .c files
|
2020-04-11 22:27:19 +00:00
|
|
|
xdg-shell-protocol.h:
|
|
|
|
$(WAYLAND_SCANNER) server-header \
|
|
|
|
$(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@
|
2020-08-24 05:04:34 +00:00
|
|
|
wlr-layer-shell-unstable-v1-protocol.h:
|
|
|
|
$(WAYLAND_SCANNER) server-header \
|
|
|
|
protocols/wlr-layer-shell-unstable-v1.xml $@
|
2020-08-28 18:18:42 +00:00
|
|
|
idle-protocol.h:
|
|
|
|
$(WAYLAND_SCANNER) server-header \
|
|
|
|
protocols/idle.xml $@
|
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
config.h:
|
2020-04-23 03:01:49 +00:00
|
|
|
cp config.def.h $@
|
2022-05-25 22:04:19 +00:00
|
|
|
clean:
|
2022-05-30 21:23:14 +00:00
|
|
|
rm -f dwl *.o *-protocol.h
|
2022-05-25 22:04:19 +00:00
|
|
|
|
|
|
|
# distribution archive
|
|
|
|
dist: clean
|
|
|
|
mkdir -p dwl-$(VERSION)
|
2022-08-09 02:30:37 +00:00
|
|
|
cp -R LICENSE* Makefile README.md client.h config.def.h\
|
|
|
|
config.mk protocols dwl.1 dwl.c util.c util.h\
|
2022-05-25 22:04:19 +00:00
|
|
|
dwl-$(VERSION)
|
|
|
|
tar -caf dwl-$(VERSION).tar.gz dwl-$(VERSION)
|
|
|
|
rm -rf dwl-$(VERSION)
|
|
|
|
|
|
|
|
# install rules
|
2020-04-23 03:01:49 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
install: dwl
|
|
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
2022-06-12 20:41:43 +00:00
|
|
|
cp -f dwl $(DESTDIR)$(PREFIX)/bin
|
2022-05-25 22:04:19 +00:00
|
|
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/dwl
|
|
|
|
mkdir -p $(DESTDIR)$(MANDIR)/man1
|
2022-06-12 20:41:43 +00:00
|
|
|
cp -f dwl.1 $(DESTDIR)$(MANDIR)/man1
|
2022-05-25 22:04:19 +00:00
|
|
|
chmod 644 $(DESTDIR)$(MANDIR)/man1/dwl.1
|
|
|
|
uninstall:
|
|
|
|
rm -f $(DESTDIR)$(PREFIX)/bin/dwl $(DESTDIR)$(MANDIR)/man1/dwl.1
|
2020-04-12 01:17:20 +00:00
|
|
|
|
2022-05-25 22:04:19 +00:00
|
|
|
.SUFFIXES: .c .o
|
|
|
|
.c.o:
|
|
|
|
$(CC) $(CPPFLAGS) $(DWLCFLAGS) -c $<
|