blob: 45133f6acac1c32332d4fa4dbb4b291b27b927d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all: scripts dwl scripts somebar
dwl:
cp scripts/* ~/.local/bin/
make -C dwl-v0.5 all
clean:
make -C dwl-v0.5 clean
test:
Xephyr :4 -screen 1920x1080 &
DISPLAY=:4 ./dwl-v0.5/dwl
somebar:
meson -C somebar setup build
ninja -C somebar/build
install:
make -C dwl-v0.5 install
ninja -C somebar/build install
|