desktop-icons/Makefile
2023-10-16 17:14:36 +02:00

13 lines
487 B
Makefile

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