micro-utils/Makefile
Your Name 79a939a26f fix
2023-11-22 15:02:09 +03:00

11 lines
150 B
Makefile

CFLAGS?=-Wall -Wextra -pedantic -Ibuilder -Ilibmu -Os -s
CC?=cc
all:
$(CC) builder/builder.c $(CFLAGS) -obuild
./build
clean:
rm bin/*
rm build