Added tp to test ThreadPool.h

git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@330 29311d96-e01e-0410-9327-a35deaab8ce9
This commit is contained in:
sbrandt 2005-06-22 03:23:44 +00:00
parent e880236c84
commit 4ef1430471

View File

@ -9,7 +9,7 @@
# behave just fine... change ${CC} back to mpicxx if you get paranoid.
CC = g++
CFLAGS = -g -I. -D_FILE_OFFSET_BITS=64 -DMPICH_IGNORE_CXX_SEEK -D_REENTRANT -D_THREAD_SAFE
LIBS = -lpthread
LIBS = -lpthread -lrt
#for normal machines
MPICC = mpicxx
@ -71,6 +71,9 @@ singleclient: mds/allmds.o osd/OSD.o fakesingleclient.o client/Client.o \
msg/CheesySerializer.o msg/FakeMessenger.o fsck.o ${COMMON_OBJS}
${CC} ${CFLAGS} ${LIBS} $^ -o $@
tp: osd/tp.o
${CC} ${CFLAGS} ${LIBS} $^ -o $@
fuseclient: client/Client.o client/fuse.o msg/CheesySerializer.o \
msg/FakeMessenger.o ${COMMON_OBJS}
${CC} ${CFLAGS} ${LIBS} -lfuse $^ -o $@