This feature adds a preview rectangle which shows the current hovered color at the left bottom corner in a 50x50 pixel area.
10 lines
187 B
Makefile
10 lines
187 B
Makefile
.PHONY: clean
|
|
|
|
CFLAGS := $(shell pkg-config --libs --cflags \
|
|
gtk+-2.0 gdk-2.0 x11 xcomposite xfixes)
|
|
|
|
colorpicker: main.c
|
|
cc -o colorpicker main.c $(CFLAGS)
|
|
|
|
clean:
|
|
rm -f colorpicker
|