mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-02-05 04:06:11 -05:00
On BSD make, $> is an alias for $^. On both GNU and BSD make, $^
is supported. Specifying both resulted in duplicate object files
passed to the linker:
ld: error: duplicate symbol: main
>>> defined at tinywl.c:887
>>> tinywl.o:(main)
>>> defined at tinywl.c:887
>>> tinywl.o:(.text+0x0)
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Only use $^ and remove $>.
(cherry picked from commit 322291cdcf)
27 lines
933 B
Makefile
27 lines
933 B
Makefile
PKG_CONFIG?=pkg-config
|
|
WAYLAND_PROTOCOLS!=$(PKG_CONFIG) --variable=pkgdatadir wayland-protocols
|
|
WAYLAND_SCANNER!=$(PKG_CONFIG) --variable=wayland_scanner wayland-scanner
|
|
|
|
PKGS="wlroots-0.19" wayland-server xkbcommon
|
|
CFLAGS_PKG_CONFIG!=$(PKG_CONFIG) --cflags $(PKGS)
|
|
CFLAGS+=$(CFLAGS_PKG_CONFIG)
|
|
LIBS!=$(PKG_CONFIG) --libs $(PKGS)
|
|
|
|
all: tinywl
|
|
|
|
# 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.
|
|
xdg-shell-protocol.h:
|
|
$(WAYLAND_SCANNER) server-header \
|
|
$(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@
|
|
|
|
tinywl.o: tinywl.c xdg-shell-protocol.h
|
|
$(CC) -c $< -g -Werror $(CFLAGS) -I. -DWLR_USE_UNSTABLE -o $@
|
|
tinywl: tinywl.o
|
|
$(CC) $^ -g -Werror $(CFLAGS) $(LDFLAGS) $(LIBS) -o $@
|
|
|
|
clean:
|
|
rm -f tinywl tinywl.o xdg-shell-protocol.h
|
|
|
|
.PHONY: all clean
|