From d17147747c5aa9e71d94f63bbc616e0998da21ed Mon Sep 17 00:00:00 2001 From: Itamar Haber Date: Sun, 1 May 2016 09:13:11 -0700 Subject: [PATCH] Touches --- rmutil/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rmutil/Makefile b/rmutil/Makefile index b33ced9..faba027 100644 --- a/rmutil/Makefile +++ b/rmutil/Makefile @@ -1,18 +1,17 @@ -#set environment variable RM_INCLUDE_DIR to the location of redismodule.h +# set environment variable RM_INCLUDE_DIR to the location of redismodule.h ifndef RM_INCLUDE_DIR RM_INCLUDE_DIR=../ endif CFLAGS = -g -fPIC -lc -lm -O3 -std=gnu99 -I$(RM_INCLUDE_DIR) CC=gcc -.SUFFIXES: .c .so .xo .o OBJS=util.o strings.o sds.o all: librmutil.a clean: - rm -rf *.xo *.so *.o + rm -rf *.o *.a librmutil.a: $(OBJS) ar rcs $@ $^