1
0
Fork 0
mirror of https://github.com/Geronymos/desktop-icons synced 2025-04-09 14:45:50 +02:00
desktop-icons/Makefile

13 lines
487 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-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