Merge branch 'main' of https://codeberg.org/dwl/dwl
This commit is contained in:
		
							
								
								
									
										33
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										33
									
								
								Makefile
									
									
									
									
									
								
							| @@ -4,19 +4,24 @@ | ||||
| include config.mk | ||||
|  | ||||
| # flags for compiling | ||||
| 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 -Werror=implicit -Werror=return-type -Werror=incompatible-pointer-types -Wfloat-conversion | ||||
| 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 \ | ||||
| 	-Werror=implicit -Werror=return-type -Werror=incompatible-pointer-types \ | ||||
| 	-Wfloat-conversion | ||||
|  | ||||
| # CFLAGS / LDFLAGS | ||||
| PKGS      = wlroots wayland-server xkbcommon libinput $(XLIBS) | ||||
| PKGS      = wlroots-0.18 wayland-server xkbcommon libinput $(XLIBS) | ||||
| DWLCFLAGS = `$(PKG_CONFIG) --cflags $(PKGS)` $(DWLCPPFLAGS) $(DWLDEVCFLAGS) $(CFLAGS) | ||||
| LDLIBS    = `$(PKG_CONFIG) --libs $(PKGS)` $(LIBS) | ||||
| LDLIBS    = `$(PKG_CONFIG) --libs $(PKGS)` -lm $(LIBS) | ||||
|  | ||||
| all: dwl | ||||
| dwl: dwl.o util.o dwl-ipc-unstable-v2-protocol.o | ||||
| 	$(CC) dwl.o util.o $(DWLCFLAGS) $(LDFLAGS) $(LDLIBS) dwl-ipc-unstable-v2-protocol.o -o $@ | ||||
| dwl.o: dwl.c client.h config.h config.mk cursor-shape-v1-protocol.h pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.h dwl-ipc-unstable-v2-protocol.h | ||||
| dwl.o: dwl.c client.h config.h config.mk cursor-shape-v1-protocol.h \ | ||||
| 	pointer-constraints-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h \ | ||||
| 	wlr-output-power-management-unstable-v1-protocol.h xdg-shell-protocol.h dwl-ipc-unstable-v2-protocol.h | ||||
| util.o: util.c util.h | ||||
| dwl-ipc-unstable-v2-protocol.o: dwl-ipc-unstable-v2-protocol.h | ||||
|  | ||||
| @@ -27,7 +32,7 @@ WAYLAND_SCANNER   = `$(PKG_CONFIG) --variable=wayland_scanner wayland-scanner` | ||||
| WAYLAND_PROTOCOLS = `$(PKG_CONFIG) --variable=pkgdatadir wayland-protocols` | ||||
|  | ||||
| cursor-shape-v1-protocol.h: | ||||
| 	$(WAYLAND_SCANNER) server-header \ | ||||
| 	$(WAYLAND_SCANNER) enum-header \ | ||||
| 		$(WAYLAND_PROTOCOLS)/staging/cursor-shape/cursor-shape-v1.xml $@ | ||||
| dwl-ipc-unstable-v2-protocol.h: | ||||
| 	$(WAYLAND_SCANNER) server-header \ | ||||
| @@ -36,11 +41,14 @@ dwl-ipc-unstable-v2-protocol.c: | ||||
| 	$(WAYLAND_SCANNER) private-code \ | ||||
| 		protocols/dwl-ipc-unstable-v2.xml $@ | ||||
| pointer-constraints-unstable-v1-protocol.h: | ||||
| 	$(WAYLAND_SCANNER) server-header \ | ||||
| 	$(WAYLAND_SCANNER) enum-header \ | ||||
| 		$(WAYLAND_PROTOCOLS)/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml $@ | ||||
| wlr-layer-shell-unstable-v1-protocol.h: | ||||
| 	$(WAYLAND_SCANNER) server-header \ | ||||
| 	$(WAYLAND_SCANNER) enum-header \ | ||||
| 		protocols/wlr-layer-shell-unstable-v1.xml $@ | ||||
| wlr-output-power-management-unstable-v1-protocol.h: | ||||
| 	$(WAYLAND_SCANNER) server-header \ | ||||
| 		protocols/wlr-output-power-management-unstable-v1.xml $@ | ||||
| xdg-shell-protocol.h: | ||||
| 	$(WAYLAND_SCANNER) server-header \ | ||||
| 		$(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@ | ||||
| @@ -52,8 +60,8 @@ clean: | ||||
|  | ||||
| dist: clean | ||||
| 	mkdir -p dwl-$(VERSION) | ||||
| 	cp -R LICENSE* Makefile CHANGELOG.md README.md client.h config.def.h\ | ||||
| 		config.mk protocols dwl.1 dwl.c util.c util.h dwl.desktop\ | ||||
| 	cp -R LICENSE* Makefile CHANGELOG.md 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) | ||||
| @@ -69,7 +77,8 @@ install: dwl | ||||
| 	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 | ||||
| 	rm -f $(DESTDIR)$(PREFIX)/bin/dwl $(DESTDIR)$(MANDIR)/man1/dwl.1 \ | ||||
| 		$(DESTDIR)$(DATADIR)/wayland-sessions/dwl.desktop | ||||
|  | ||||
| .SUFFIXES: .c .o | ||||
| .c.o: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user