mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
21784def70
A first step to enable a consistent full percentile analysis on query latency so that we can fully understand the performance and stability characteristics of the redis-server system we are measuring. It also improves the instantaneous reported metrics, and the csv output format.
21 lines
254 B
Makefile
21 lines
254 B
Makefile
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)
|
|
|
|
hdr_histogram.o: hdr_histogram.h hdr_histogram.c
|
|
|
|
.c.o:
|
|
$(R_CC) -c $<
|
|
|
|
clean:
|
|
rm -f *.o
|
|
|
|
|