8img/Makefile

9 lines
100 B
Makefile
Raw Permalink Normal View History

2025-01-24 17:30:34 +00:00
CC?=cc
CFLAGS?=-pedantic -Wall -Wextra -s -Os
all:
$(CC) $(CFLAGS) img.c -o 8img
clean:
rm 8img