A very fast kyoto cabinet powered memcache interface http proxy caching server.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
CFLAGS=$(shell curl-config --cflags) -Wall $(EXTRA_CFLAGS)
|
|
|
LFLAGS=$(shell curl-config --libs) -lpthread -lkyotocabinet
|
|
|
CC=gcc
|
|
|
|
|
|
default: fast-cache
|
|
|
|
|
|
fast-cache:
|
|
|
$(CC) $(CFLAGS) ./src/main.c -o $@ $(LFLAGS)
|
|
|
|
|
|
debug:
|
|
|
make -f Makefile EXTRA_CFLAGS="-g"
|
|
|
|
|
|
run:
|
|
|
./fast-cache
|
|
|
|
|
|
clean:
|
|
|
rm ./fast-cache
|