tinywl: split compilation into two steps

While we are at it also respect LDFLAGS and optimize pkg-config usage
master
Leonardo Hernández Hernández 6 months ago committed by Simon Zeni
parent f9214373f8
commit d92c238721

@ -1,9 +1,9 @@
WAYLAND_PROTOCOLS=$(shell pkg-config --variable=pkgdatadir wayland-protocols) WAYLAND_PROTOCOLS=$(shell pkg-config --variable=pkgdatadir wayland-protocols)
WAYLAND_SCANNER=$(shell pkg-config --variable=wayland_scanner wayland-scanner) WAYLAND_SCANNER=$(shell pkg-config --variable=wayland_scanner wayland-scanner)
LIBS=\
$(shell pkg-config --cflags --libs "wlroots-0.18") \ PKGS="wlroots-0.18" wayland-server xkbcommon
$(shell pkg-config --cflags --libs wayland-server) \ CFLAGS+=$(shell pkg-config --cflags $(PKGS))
$(shell pkg-config --cflags --libs xkbcommon) LIBS=$(shell pkg-config --libs $(PKGS))
# wayland-scanner is a tool which generates C headers and rigging for Wayland # 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 # protocols, which are specified in XML. wlroots requires you to rig these up
@ -12,15 +12,13 @@ xdg-shell-protocol.h:
$(WAYLAND_SCANNER) server-header \ $(WAYLAND_SCANNER) server-header \
$(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@ $(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@
tinywl: tinywl.c xdg-shell-protocol.h tinywl.o: tinywl.c xdg-shell-protocol.h
$(CC) $(CFLAGS) \ $(CC) -g -Werror $(CFLAGS) -I. -DWLR_USE_UNSTABLE -o $@ -c $<
-g -Werror -I. \ tinywl: tinywl.o
-DWLR_USE_UNSTABLE \ $(CC) $< -g -Werror $(CFLAGS) $(LDFLAGS) $(LIBS) -o $@
-o $@ $< \
$(LIBS)
clean: clean:
rm -f tinywl xdg-shell-protocol.h rm -f tinywl tinywl.o xdg-shell-protocol.h
.DEFAULT_GOAL=tinywl .DEFAULT_GOAL=tinywl
.PHONY: clean .PHONY: clean

Loading…
Cancel
Save