(un)install system wide

This commit is contained in:
Orangerot 2023-04-06 00:06:36 +02:00
parent 1ce8ee6319
commit 42bacc4e82

View file

@ -3,4 +3,8 @@ 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` 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`
clangd: 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` 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