5 lines
79 B
Makefile
5 lines
79 B
Makefile
CFLAGS?= -s -flto -Os -pedantic
|
|
CC?=cc
|
|
all:
|
|
$(CC) fetch.c $(CFLAGS) -o kfetch
|