imcat/Makefile

10 lines
139 B
Makefile
Raw Normal View History

2018-04-18 11:14:04 -07:00
imcat: imcat.c
cc -D_POSIX_C_SOURCE=2 -std=c99 -Wall -g -o imcat imcat.c -lm
2018-04-18 11:14:04 -07:00
run: imcat
./imcat ~/Desktop/*.png
clean:
rm -f ./imcat