summaryrefslogtreecommitdiff
path: root/dwl/Makefile
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2023-12-01 18:04:04 +0100
committertslil clingman <tslil@posteo.de>2023-12-01 18:12:10 +0100
commit119f17396c60900eaf7534f8106d4ce6ca0362e5 (patch)
tree3d2074b5f295e8168312494381ab23eccc0ca1ec /dwl/Makefile
parent9bc372625e1fdafa50d44dcb9a8070ecdfc01b38 (diff)
[dwl] track only patches against upstream
Diffstat (limited to 'dwl/Makefile')
-rw-r--r--dwl/Makefile63
1 files changed, 0 insertions, 63 deletions
diff --git a/dwl/Makefile b/dwl/Makefile
deleted file mode 100644
index 5320e42..0000000
--- a/dwl/Makefile
+++ /dev/null
@@ -1,63 +0,0 @@
-.POSIX:
-.SUFFIXES:
-
-include config.mk
-
-# flags for compiling
-DWLCPPFLAGS = -I. -DWLR_USE_UNSTABLE -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XWAYLAND)
-DWLDEVCFLAGS = -pedantic -Wall -Wextra -Wdeclaration-after-statement -Wno-unused-parameter -Wno-sign-compare -Wshadow -Wunused-macros\
- -Werror=strict-prototypes -Werror=implicit -Werror=return-type -Werror=incompatible-pointer-types
-
-# CFLAGS / LDFLAGS
-PKGS = wlroots wayland-server xkbcommon libinput $(XLIBS)
-DWLCFLAGS = `$(PKG_CONFIG) --cflags $(PKGS)` $(DWLCPPFLAGS) $(DWLDEVCFLAGS) $(CFLAGS)
-LDLIBS = `$(PKG_CONFIG) --libs $(PKGS)` $(LIBS)
-
-all: dwl
-dwl: dwl.o util.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
-util.o: util.c util.h
-
-# 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.
-WAYLAND_SCANNER = `$(PKG_CONFIG) --variable=wayland_scanner wayland-scanner`
-WAYLAND_PROTOCOLS = `$(PKG_CONFIG) --variable=pkgdatadir wayland-protocols`
-
-xdg-shell-protocol.h:
- $(WAYLAND_SCANNER) server-header \
- $(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@
-wlr-layer-shell-unstable-v1-protocol.h:
- $(WAYLAND_SCANNER) server-header \
- protocols/wlr-layer-shell-unstable-v1.xml $@
-
-config.h:
- cp config.def.h $@
-clean:
- rm -f dwl *.o *-protocol.h
-
-dist: clean
- mkdir -p dwl-$(VERSION)
- cp -R LICENSE* Makefile README.md client.h config.def.h\
- config.mk protocols dwl.1 dwl.c util.c util.h dwl.desktop\
- dwl-$(VERSION)
- tar -caf dwl-$(VERSION).tar.gz dwl-$(VERSION)
- rm -rf dwl-$(VERSION)
-
-install: dwl
- mkdir -p $(DESTDIR)$(PREFIX)/bin
- cp -f dwl $(DESTDIR)$(PREFIX)/bin
- chmod 755 $(DESTDIR)$(PREFIX)/bin/dwl
- mkdir -p $(DESTDIR)$(MANDIR)/man1
- cp -f dwl.1 $(DESTDIR)$(MANDIR)/man1
- chmod 644 $(DESTDIR)$(MANDIR)/man1/dwl.1
- mkdir -p $(DESTDIR)$(DATADIR)/wayland-sessions
- cp -f dwl.desktop $(DESTDIR)$(DATADIR)/wayland-sessions/dwl.desktop
- chmod 644 $(DESTDIR)$(DATADIR)/wayland-sessions/dwl.desktop
-uninstall:
- rm -f $(DESTDIR)$(PREFIX)/bin/dwl $(DESTDIR)$(MANDIR)/man1/dwl.1 $(DESTDIR)$(DATADIR)/wayland-sessions/dwl.desktop
-
-.SUFFIXES: .c .o
-.c.o:
- $(CC) $(CPPFLAGS) $(DWLCFLAGS) -c $<