5bd187c481
git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@1152 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe
22 lines
786 B
Makefile
22 lines
786 B
Makefile
# yinst i log4cpp_y_dev-1.4.2
|
|
|
|
SHERPA_DIR = /homes/sears/svndev/trunk/dht
|
|
|
|
CPPFLAGS=-Wall -I${SHERPA_DIR}/common/include \
|
|
-I${SHERPA_DIR}/storage/handler/src \
|
|
-I${SHERPA_DIR}/storage/handler/include/ \
|
|
-I${SHERPA_DIR}/framework/base/include/ \
|
|
-I${SHERPA_DIR}/externals/fwcore/include \
|
|
-I /home/y/include -I .. -c -fPIC
|
|
CXXFLAGS=-m32
|
|
CFLAGS=-m32
|
|
|
|
libsherpalogstore.so : LSMPersistentStoreImpl.o tcpclient.o LSMPersistentParentImpl.o
|
|
gcc -m32 -shared -Wl,-soname,libsherpalogstore.so -o libsherpalogstore.so LSMPersistentStoreImpl.o tcpclient.o LSMPersistentParentImpl.o
|
|
cp libsherpalogstore.so /homes/sears/sherpa-so/
|
|
|
|
tcpclient.cpp : ../tcpclient.cpp
|
|
ln -s ../tcpclient.cpp
|
|
|
|
clean:
|
|
rm -f LSMPersistentStoreImpl.o tcpclient.o libsherpalogstore.so
|