Files
uprintf/Makefile

15 lines
257 B
Makefile
Raw Permalink Normal View History

sources := test.c uprintf.c idiv.c
cflags := -std=c89 -Os -Wl,--no-warn-execstack
ifeq ($(CUSTOM_DIV_FUNC), 1)
cflags += -DUPRINTF_CUSTOM_DIV_FUNC
endif
2020-12-13 09:51:25 +03:00
all: test
test: test.c uprintf.c uprintf.h
gcc $(cflags) -o test $(sources)
2020-12-13 09:51:25 +03:00
clean:
rm -rf test