From 5d8dfe892a2ea89f706ee140c3bdcfd89fe03fda Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:40:55 +0100 Subject: Add Redis source code for testing --- examples/redis-unstable/deps/fpconv/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 examples/redis-unstable/deps/fpconv/Makefile (limited to 'examples/redis-unstable/deps/fpconv/Makefile') diff --git a/examples/redis-unstable/deps/fpconv/Makefile b/examples/redis-unstable/deps/fpconv/Makefile new file mode 100644 index 0000000..2654888 --- /dev/null +++ b/examples/redis-unstable/deps/fpconv/Makefile @@ -0,0 +1,27 @@ +STD= +WARN= -Wall +OPT= -Os + +R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) +R_LDFLAGS= $(LDFLAGS) +DEBUG= -g + +R_CC=$(CC) $(R_CFLAGS) +R_LD=$(CC) $(R_LDFLAGS) + +AR= ar +ARFLAGS= rcs + +libfpconv.a: fpconv_dtoa.o + $(AR) $(ARFLAGS) $@ $+ + +fpconv_dtoa.o: fpconv_dtoa.h fpconv_dtoa.c + +.c.o: + $(R_CC) -c $< + +clean: + rm -f *.o + rm -f *.a + + -- cgit v1.2.3