2023-04-05 13:09:05 +02:00
|
|
|
|
|
|
|
all:
|
2023-04-05 22:33:15 +02:00
|
|
|
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`
|
2023-10-15 14:41:34 +02:00
|
|
|
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`
|
2023-04-05 13:09:05 +02:00
|
|
|
clangd:
|
2023-04-05 22:33:15 +02:00
|
|
|
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`
|
2023-04-06 00:06:36 +02:00
|
|
|
install:
|
|
|
|
install -Dm755 dicons /usr/local/bin/dicons
|
|
|
|
uninstall:
|
|
|
|
rm -f /usr/local/bin/dicons
|
2023-04-05 13:09:05 +02:00
|
|
|
|