kfetch/Makefile

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/*