blob: ad4926e8589dc6275f0faa753b263c183b6e1205 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
all:
gcc `pkg-config --cflags gtk+-3.0 gtk-layer-shell-0` -o dicons dicons.c `pkg-config --libs gtk+-3.0 gtk-layer-shell-0`
debug:
gcc -g `pkg-config --cflags gtk+-3.0 gtk-layer-shell-0` -o dicons dicons.c `pkg-config --libs gtk+-3.0 gtk-layer-shell-0`
clangd:
bear -- gcc `pkg-config --cflags gtk+-3.0 gtk-layer-shell-0` -o dicons dicons.c `pkg-config --libs gtk+-3.0 gtk-layer-shell-0`
install:
install -Dm755 dicons /usr/local/bin/dicons
uninstall:
rm -f /usr/local/bin/dicons
|