kfetch/Makefile
2023-12-15 18:17:49 +03:00

9 lines
124 B
Makefile

CFLAGS?=-s -Os -pedantic -Wall -Wextra
CC?=cc
all:
$(CC) src/*.c -Iinclude -I. $(CFLAGS) -okfetch
clean:
rm obj/* bin/*