imcat/Makefile

10 lines
142 B
Makefile
Raw Normal View History

2018-04-18 11:14:04 -07:00
imcat: imcat.c
2022-05-31 12:21:34 -07:00
$(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