1 2 3 4 5 6 7 8
all: cc -Wall $$(libsixel-config --cflags) main.c -o demo $$(libsixel-config --libs) run: all ./demo clean: rm -vf ./demo