This commit is contained in:
Your Name 2023-11-02 17:51:10 +03:00
parent b14ca9e430
commit c65640c4f6
12 changed files with 241 additions and 296 deletions

View file

@ -1,4 +1,5 @@
CFLAGS?= -s -flto -Os -pedantic
CFLAGS?=-s -Os -pedantic -Wall -Wextra
CC?=cc
all:
$(CC) fetch.c $(CFLAGS) -o kfetch
$(CC) src/*.c -Iinclude -I. $(CFLAGS) -okfetch