stasis-bLSM/Makefile
sears f164d9eeb6 rename logstore.h and logstore.cpp to blsm.h and blsm.cpp
git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@3775 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe
2012-02-22 23:12:28 +00:00

25 lines
699 B
Makefile

include ../mapkeeper/Makefile.config
INC = -I ../stasis \
-I ../mapkeeper/thrift/gen-cpp/ \
-I $(THRIFT_DIR)/include/ \
-I $(THRIFT_DIR)/include/thrift \
-I ./sherpa
LIBSRC = $(wildcard *.c) $(wildcard *.cpp)
LIBNAME = blsm
ifeq ($(shell uname),Linux)
STATIC_LIBS= ../mapkeeper/thrift/gen-cpp/libmapkeeper.a \
-lrt sherpa/LSMServerHandler.cc bin/libblsm.a \
../stasis/bin/libstasis.a
else
STATIC_LIBS= ./libstdc++.a ../mapkeeper/thrift/gen-cpp/libmapkeeper.a \
sherpa/LSMServerHandler.cc bin/libblsm.a \
../stasis/bin/libstasis.a
endif
MAINSRC = $(wildcard main/*.cpp) $(wildcard sherpa/main/*.cc)
include ../stasis/config/Makefile.stasis