Files
uprintf/Makefile

8 lines
141 B
Makefile
Raw Normal View History

2020-12-13 09:51:25 +03:00
all: test
test: test.c uprintf.c uprintf.h
2025-01-27 22:29:06 +03:00
gcc -std=c89 -Os -DUPRINTF_CUSTOM_DIV_FUNC -o test test.c uprintf.c idiv.c
2020-12-13 09:51:25 +03:00
clean:
rm -rf test