summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/deps/fast_float/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/deps/fast_float/Makefile')
-rw-r--r--examples/redis-unstable/deps/fast_float/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/redis-unstable/deps/fast_float/Makefile b/examples/redis-unstable/deps/fast_float/Makefile
deleted file mode 100644
index e3acaa5..0000000
--- a/examples/redis-unstable/deps/fast_float/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# Fallback to gcc/g++ when $CC or $CXX is not in $PATH.
-CC ?= gcc
-CXX ?= g++
-
-WARN=-Wall
-OPT=-O3
-STD=-std=c++11
-DEFS=-DFASTFLOAT_ALLOWS_LEADING_PLUS
-
-FASTFLOAT_CFLAGS=$(WARN) $(OPT) $(STD) $(DEFS) $(CFLAGS)
-FASTFLOAT_LDFLAGS=$(LDFLAGS)
-
-libfast_float: fast_float_strtod.o
- $(AR) -r libfast_float.a fast_float_strtod.o
-
-32bit: FASTFLOAT_CFLAGS += -m32
-32bit: FASTFLOAT_LDFLAGS += -m32
-32bit: libfast_float
-
-fast_float_strtod.o: fast_float_strtod.cpp
- $(CXX) $(FASTFLOAT_CFLAGS) -c fast_float_strtod.cpp $(FASTFLOAT_LDFLAGS)
-
-clean:
- rm -f *.o
- rm -f *.a
- rm -f *.h.gch
- rm -rf *.dSYM