imcat/Makefile

10 lines
142 B
Makefile
Raw Normal View History

2018-04-18 20:14:04 +02:00
imcat: imcat.c
2022-05-31 21:21:34 +02:00
$(CC) -D_POSIX_C_SOURCE=2 -std=c99 -Wall -g -o imcat imcat.c -lm
2018-04-18 20:14:04 +02:00
run: imcat
./imcat ~/Desktop/*.png
clean:
rm -f ./imcat