Makefile (487B)
1 2 all: 3 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` 4 debug: 5 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` 6 clangd: 7 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` 8 install: 9 install -Dm755 dicons /usr/local/bin/dicons 10 uninstall: 11 rm -f /usr/local/bin/dicons 12