desktop-icons/Makefile

11 lines
357 B
Makefile
Raw Normal View History

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-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