mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
7f4ac3d19c
Current todo: - replace functions in zset.{c,h} with a new unified Redis zset access API. Once we get the zset interface fixed, we can squash relevant commits in this branch and have one nice commit to merge into unstable. This commit adds: - Geo commands - Tests; runnable with: ./runtest --single unit/geo - Geo helpers in deps/geohash-int/ - src/geo.{c,h} and src/geojson.{c,h} implementing geo commands - Updated build configurations to get everything working - TEMPORARY: src/zset.{c,h} implementing zset score and zset range reading without writing to client output buffers. - Modified linkage of one t_zset.c function for use in zset.c Conflicts: src/Makefile src/redis.c
24 lines
342 B
Makefile
24 lines
342 B
Makefile
STD=
|
|
WARN= -Wall
|
|
OPT= -Ofast
|
|
|
|
R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
|
|
R_LDFLAGS= $(LDFLAGS)
|
|
DEBUG= -g
|
|
|
|
R_CC=$(CC) $(R_CFLAGS)
|
|
R_LD=$(CC) $(R_LDFLAGS)
|
|
|
|
all: geohash.o geohash_helper.o
|
|
|
|
.PHONY: all
|
|
|
|
geohash.o: geohash.h geohash.c
|
|
geohash_helper.o: geohash.h geohash_helper.h geohash_helper.c
|
|
|
|
.c.o:
|
|
$(R_CC) -c $<
|
|
|
|
clean:
|
|
rm -f *.o
|