This repository has been archived on 2025-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
colorpicker/Makefile
Hermann Mayer a4455b92fd Add --preview option
This feature adds a preview rectangle which shows the current hovered
color at the left bottom corner in a 50x50 pixel area.
2017-09-01 07:05:17 +02:00

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