summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/deps/hdr_histogram/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/deps/hdr_histogram/Makefile')
-rw-r--r--examples/redis-unstable/deps/hdr_histogram/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/redis-unstable/deps/hdr_histogram/Makefile b/examples/redis-unstable/deps/hdr_histogram/Makefile
deleted file mode 100644
index 28dd93e..0000000
--- a/examples/redis-unstable/deps/hdr_histogram/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-STD= -std=c99
-WARN= -Wall
-OPT= -Os
-
-R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) -DHDR_MALLOC_INCLUDE=\"hdr_redis_malloc.h\"
-R_LDFLAGS= $(LDFLAGS)
-DEBUG= -g
-
-R_CC=$(CC) $(R_CFLAGS)
-R_LD=$(CC) $(R_LDFLAGS)
-
-AR= ar
-ARFLAGS= rcs
-
-libhdrhistogram.a: hdr_histogram.o
- $(AR) $(ARFLAGS) $@ $+
-
-hdr_histogram.o: hdr_histogram.h hdr_histogram.c
-
-.c.o:
- $(R_CC) -c $<
-
-clean:
- rm -f *.o
- rm -f *.a
-
-