This repository has been archived by the owner on Oct 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (35 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
SOURCES = $(filter-out src/wimptool.c, $(wildcard src/*.c))
OBJECTS = $(SOURCES:.c=.o)
CFLAGS += -g -I. -DWLR_USE_UNSTABLE -Wall -Wextra -pedantic -Wno-unused-parameter
LDFLAGS += $(shell pkg-config --cflags --libs wlroots) \
$(shell pkg-config --cflags --libs wayland-server) \
$(shell pkg-config --cflags --libs xkbcommon) \
$(shell pkg-config --cflags --libs libinput) \
$(shell pkg-config --cflags --libs cairo) \
$(shell pkg-config --cflags --libs pixman-1) \
-lm
all: wimp wimptool
PREFIX ?= /usr/local
BINPREFIX ?= $(PREFIX)/bin
wimp: xdg-shell-protocol wlr-layer-shell-unstable-v1-protocol ${OBJECTS}
@$(CC) -o wimp $(OBJECTS) $(LDFLAGS)
%.o: %.c %.h
@$(CC) $(CFLAGS) -c -o $@ $< ${LDFLAGS}
wimptool: src/wimptool.c
@$(CC) $(CFLAGS) -o $@ $<
WAYLAND_PROTOCOLS=$(shell pkg-config --variable=pkgdatadir wayland-protocols)
WAYLAND_SCANNER=$(shell pkg-config --variable=wayland_scanner wayland-scanner)
xdg-shell-protocol:
@$(WAYLAND_SCANNER) server-header $(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml [email protected]
@$(WAYLAND_SCANNER) private-code $(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml [email protected]
wlr-layer-shell-unstable-v1-protocol:
@$(WAYLAND_SCANNER) server-header protocols/wlr-layer-shell-unstable-v1.xml [email protected]
@$(WAYLAND_SCANNER) private-code protocols/wlr-layer-shell-unstable-v1.xml [email protected]
clean:
rm -f wimp wimptool *-protocol.h *-protocol.c ${OBJECTS}
install:
mkdir -p "$(DESTDIR)$(BINPREFIX)"
cp -pf "wimp" "$(DESTDIR)$(BINPREFIX)"
uninstall:
rm -f "$(DESTDIR)$(BINPREFIX)/wimp"
.PHONY: all clean install uninstall