8img/Makefile

9 lines
100 B
Makefile
Raw Permalink Normal View History

2024-11-10 09:38:38 +00:00
CC?=cc
2024-11-10 14:26:37 +00:00
CFLAGS?=-pedantic -Wall -Wextra -s -Os
2024-11-10 09:38:38 +00:00
all:
$(CC) $(CFLAGS) img.c -o 8img
clean:
rm 8img