4c7cc1cfa6
If an icon is the same as one in the cache, then it uses that one. icons of different sizes (from the same client) are linked together into one, and resizes of icons are cached and linked to all the various sizes. so you only need one icon in memory for all your terminals now. ya!
6 lines
164 B
Makefile
6 lines
164 B
Makefile
files=$(wildcard *.c)
|
|
|
|
all: $(files:.c=)
|
|
|
|
%: %.c
|
|
$(CC) `pkg-config --cflags --libs glib-2.0` $(CFLAGS) -o $@ $^ -lX11 -lXext -L/usr/X11R6/lib -I/usr/X11R6/include
|