You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
437 B
Makefile

9 years ago
# set environment variable RM_INCLUDE_DIR to the location of redismodule.h
ifndef RM_INCLUDE_DIR
RM_INCLUDE_DIR=../
endif
9 years ago
CFLAGS = -g -fPIC -lc -lm -O3 -std=gnu99 -I$(RM_INCLUDE_DIR) -Wall
9 years ago
CC=gcc
9 years ago
OBJS=util.o strings.o sds.o vector.o
9 years ago
all: librmutil.a
9 years ago
clean:
9 years ago
rm -rf *.o *.a
9 years ago
librmutil.a: $(OBJS)
9 years ago
ar rcs $@ $^
9 years ago
test_vector: test_vector.o vector.o
$(CC) -Wall -o test_vector vector.o test_vector.o -lc -O0
9 years ago
@(sh -c ./test_vector)