ceph/src/Makefile.am

698 lines
18 KiB
Makefile
Raw Normal View History

2008-01-28 19:05:29 +00:00
#
# note: the old Makefile is at Makefile.old
#
2008-01-28 02:12:20 +00:00
2008-01-28 19:05:29 +00:00
AUTOMAKE_OPTIONS = gnu
2008-01-28 02:12:20 +00:00
2009-08-04 21:16:03 +00:00
bin_PROGRAMS =
sbin_PROGRAMS =
bin_SCRIPTS = crun
2008-01-28 02:12:20 +00:00
# monitor
cmon_SOURCES = cmon.cc msg/SimpleMessenger.cc
cmon_LDADD = libmon.a libcrush.a libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += cmon
# osd
cosd_SOURCES = cosd.cc msg/SimpleMessenger.cc objclass/class_debug.cc \
objclass/class_api.cc
cosd_LDADD = libosd.a libos.a libcrush.a libcommon.a -ldl -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += cosd
# mds
cmds_SOURCES = cmds.cc msg/SimpleMessenger.cc
cmds_LDADD = libmds.a libosdc.a libcrush.a libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += cmds
2008-07-11 00:12:34 +00:00
# admin tools
2008-12-15 19:15:55 +00:00
ceph_SOURCES = ceph.cc msg/SimpleMessenger.cc
ceph_LDADD = libcrush.a libcommon.a -ledit -lcrypto
mkmonfs_SOURCES = mkmonfs.cc
mkmonfs_LDADD = libmon.a libcrush.a libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
cconf_SOURCES = cconf.cc
cconf_LDADD = libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += ceph mkmonfs cconf
monmaptool_SOURCES = monmaptool.cc
monmaptool_LDADD = libcommon.a -lcrypto
crushtool_SOURCES = crushtool.cc
crushtool_LDADD = libcrush.a libcommon.a -lcrypto
osdmaptool_SOURCES = osdmaptool.cc
osdmaptool_LDADD = libcrush.a libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += monmaptool crushtool osdmaptool
2009-07-21 23:42:19 +00:00
mount_ceph_SOURCES = mount/mount.ceph.c
2009-08-04 21:16:03 +00:00
sbin_PROGRAMS += mount.ceph
2008-01-28 02:12:20 +00:00
dumpjournal_SOURCES = dumpjournal.cc msg/SimpleMessenger.cc
dumpjournal_LDADD = libosdc.a libcrush.a libcommon.a -lcrypto
dupstore_SOURCES = dupstore.cc
dupstore_LDADD = libos.a libcommon.a -lcrypto
2008-03-13 03:16:48 +00:00
streamtest_SOURCES = streamtest.cc
streamtest_LDADD = libos.a libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += dumpjournal dupstore streamtest
2008-01-28 19:05:29 +00:00
# synthetic client
csyn_SOURCES = csyn.cc msg/SimpleMessenger.cc
csyn_LDADD = libclient.a libosdc.a libcrush.a libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += csyn
2008-11-13 01:03:11 +00:00
testmsgr_SOURCES = testmsgr.cc msg/SimpleMessenger.cc
testmsgr_LDADD = libcommon.a -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += testmsgr
2008-11-13 01:03:11 +00:00
2008-07-11 00:12:34 +00:00
# fuse targets?
if WITH_FUSE
2008-01-28 19:05:29 +00:00
cfuse_SOURCES = cfuse.cc msg/SimpleMessenger.cc client/fuse.cc client/fuse_ll.cc
cfuse_LDADD = -lfuse libclient.a libosdc.a libcrush.a libcommon.a -lcrypto
2008-07-11 00:12:34 +00:00
bin_PROGRAMS += cfuse
2009-08-04 20:09:32 +00:00
#if WITH_DEBUG
#fakefuse_SOURCES = fakefuse.cc msg/FakeMessenger.cc client/fuse.cc client/fuse_ll.cc
#fakefuse_LDADD = -lfuse libmon.a libmds.a libosd.a libos.a \
# libclient.a libosdc.a libcrush.a
#bin_PROGRAMS += fakefuse
#endif
2008-07-11 00:12:34 +00:00
endif
# debug targets?
if WITH_DEBUG
psim_SOURCES = psim.cc
psim_LDADD = libcrush.a libcommon.a -lcrypto
2009-05-26 16:10:10 +00:00
bin_PROGRAMS += psim
2008-07-11 00:12:34 +00:00
2009-05-26 16:10:10 +00:00
#fakesyn_SOURCES = fakesyn.cc msg/FakeMessenger.cc
#fakesyn_LDADD = libmon.a libmds.a libosd.a libos.a \
# libclient.a libosdc.a libcrush.a libcommon.a
#bin_PROGRAMS += fakesyn
2008-01-28 19:05:29 +00:00
2008-07-11 00:12:34 +00:00
endif
2008-01-28 19:05:29 +00:00
2009-05-11 23:22:08 +00:00
##########
BUILT_SOURCES =
lib_LTLIBRARIES =
2009-05-11 23:22:08 +00:00
# libceph
libceph_la_SOURCES = \
client/libceph.cc \
client/Client.cc \
msg/SimpleMessenger.cc \
${libcommon_a_SOURCES} \
${libcrush_a_SOURCES} \
${libosdc_a_SOURCES}
libceph_la_CFLAGS = ${AM_CFLAGS}
libceph_la_CXXFLAGS= ${AM_CXXFLAGS}
libceph_la_LDFLAGS = -version-info 1:0:0 -export-symbols-regex 'ceph_.*'
lib_LTLIBRARIES += libceph.la
testceph_SOURCES = client/testceph.cc
testceph_LDADD = libceph.la -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += testceph
2009-05-11 23:22:08 +00:00
# libcrush.so
libcrush_la_SOURCES = \
2008-03-22 18:38:08 +00:00
crush/builder.c \
crush/mapper.c \
crush/crush.c
libcrush_la_CFLAGS = ${AM_CFLAGS}
lib_LTLIBRARIES += libcrush.la
2009-05-11 23:22:08 +00:00
# librados
2009-08-07 18:35:08 +00:00
librados_SOURCES = \
2009-05-11 23:23:33 +00:00
librados.cc \
2009-05-11 23:22:08 +00:00
msg/SimpleMessenger.cc \
osdc/Objecter.cc \
${libcommon_a_SOURCES}
2009-08-07 18:35:08 +00:00
librados_la_SOURCES = ${librados_SOURCES}
librados_la_CFLAGS = ${AM_CFLAGS}
librados_la_CXXFLAGS = ${AM_CXXFLAGS}
librados_la_LDFLAGS = -version-info 1:0:0 -export-symbols-regex 'rados_.*'
lib_LTLIBRARIES += librados.la
2009-08-07 18:35:08 +00:00
librados_a_SOURCES = ${librados_SOURCES}
librados_a_CFLAGS = ${AM_CFLAGS}
librados_a_CXXFLAGS = ${AM_CXXFLAGS}
2009-05-11 23:22:08 +00:00
2009-06-12 19:49:30 +00:00
rados_SOURCES = rados.cc
rados_LDADD = librados.la libcrush.la -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += rados
2009-05-12 15:07:00 +00:00
testrados_SOURCES = testrados.c
testrados_LDADD = librados.la libcrush.la -lcrypto
2009-05-20 20:35:50 +00:00
testradospp_SOURCES = testradospp.cc
testradospp_LDADD = librados.la libcrush.la -lcrypto
radosacl_SOURCES = radosacl.cc
radosacl_LDADD = librados.la libcrush.la -lcrypto
2009-08-04 21:16:03 +00:00
bin_PROGRAMS += testrados testradospp radosacl
2009-06-09 00:06:42 +00:00
if WITH_RADOSGW
2009-08-13 18:23:54 +00:00
libradosgw_a_SOURCES = \
radosgw/rgw_fs.cc \
radosgw/rgw_rados.cc \
radosgw/rgw_acl.cc \
radosgw/rgw_user.cc \
radosgw/rgw_access.cc \
radosgw/rgw_op.cc \
radosgw/rgw_rest.cc \
radosgw/rgw_common.cc
libradosgw_a_CFLAGS = ${AM_CFLAGS}
# lib_LTLIBRARIES += libradosgw.a
rgw_SOURCES = radosgw/rgw_main.cc
2009-08-07 18:35:08 +00:00
rgw_LDADD = libradosgw.a librados.a libcrush.a -lfcgi -lcrypto -lexpat
rgw_admin_SOURCES = radosgw/rgw_admin.cc
2009-08-07 18:35:08 +00:00
rgw_admin_LDADD = libradosgw.a librados.a libcrush.a -lfcgi -lcrypto -lexpat
rgw_aclparser_SOURCES = radosgw/rgw_aclparser.cc
2009-08-07 18:35:08 +00:00
rgw_aclparser_LDADD = libradosgw.a librados.a libcrush.a -lfcgi -lcrypto -lexpat
bin_PROGRAMS += rgw rgw_admin rgw_aclparser
endif
## object classes
2009-05-18 22:49:27 +00:00
# libtestclass.so: testclass.cc
# ${CXX} -fPIC -shared -g -o libtestclass.so testclass.cc
# libbarclass.so: barclass.cc
# ${CXX} -fPIC -shared -g -o libbarclass.so barclass.cc
# libfooclass.so: fooclass.cc
# ${CXX} -fPIC -shared -g -o libfooclass.so fooclass.cc
#
#BUILT_SOURCES += libtestclass.so libfooclass.so libbarclass.so
libcls_crypto.so: cls_crypto.cc
2009-06-08 20:48:28 +00:00
${CXX} -I. -fPIC -shared -g -o libcls_crypto.so -lcrypto cls_crypto.cc
BUILT_SOURCES += libcls_crypto.so
2009-05-18 22:49:27 +00:00
libcls_acl.so: cls_acl.cc
${CXX} -I. -fPIC -shared -g -o libcls_acl.so cls_acl.cc
BUILT_SOURCES += libcls_acl.so
2008-03-13 00:26:38 +00:00
2008-03-22 18:38:08 +00:00
## hadoop client
if WITH_HADOOPCLIENT
2008-03-22 18:38:08 +00:00
JAVA_BASE = /usr/lib/jvm/java-6-sun
libhadoopcephfs_la_SOURCES = client/hadoop/CephFSInterface.cc
libhadoopcephfs_la_LIBADD = libceph.la libcrush.la
libhadoopcephfs_la_CFLAGS = ${AM_CFLAGS}
libhadoopcephfs_la_CXXFLAGS = ${AM_CXXFLAGS}
libhadoopcephfs_la_LDFLAGS = -version-info 1:0:0 -export-symbols-regex 'hadoopcephfs_.*'
lib_LTLIBRARIES += libhadoopcephfs.la
endif
2008-03-13 02:36:54 +00:00
2008-03-13 00:26:38 +00:00
# shell scripts
2009-07-13 17:39:25 +00:00
editpaths = sed \
-e 's|@bindir[@]|$(bindir)|g' \
-e 's|@libdir[@]|$(libdir)|g' \
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
-e 's|@datadir[@]|$(pkgdatadir)|g' \
-e 's|@prefix[@]|$(prefix)|g'
init-ceph mkcephfs: init-ceph.in mkcephfs.in Makefile
rm -f $@ $@.tmp
$(editpaths) '$(srcdir)/$@.in' >$@.tmp
chmod +x $@.tmp
chmod a-w $@.tmp
mv $@.tmp $@
BUILT_SOURCES += init-ceph mkcephfs
2008-04-15 17:07:23 +00:00
2008-01-28 19:05:29 +00:00
##
INCLUDES =
LDADD = -lpthread
2008-01-28 02:12:20 +00:00
2008-10-13 20:49:15 +00:00
AM_CXXFLAGS = -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D_THREAD_SAFE -rdynamic
AM_CFLAGS = -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D_THREAD_SAFE -rdynamic
2008-01-28 19:05:29 +00:00
AM_LDFLAGS =
2008-01-28 02:12:20 +00:00
noinst_LIBRARIES = \
libcommon.a libcrush.a \
2008-03-13 03:16:48 +00:00
libmon.a libmds.a libosdc.a libosd.a libclient.a \
2009-08-07 18:35:08 +00:00
libos.a librados.a libradosgw.a
noinst_LIBRARIES += #libcephclient_so.a
2008-01-28 02:12:20 +00:00
2008-01-28 20:30:17 +00:00
# extra bits
2009-08-11 23:29:01 +00:00
EXTRA_DIST = verify-mds-journal.sh vstart.sh stop.sh \
2009-07-15 21:07:04 +00:00
crun ceph_common.sh init-ceph.in mkcephfs.in make_version
2009-02-27 22:23:40 +00:00
install-data-local:
$(install_sh_SCRIPT) -m 0755 mkcephfs $(DESTDIR)$(sbindir)/mkcephfs
2009-02-27 22:23:40 +00:00
mkdir -p $(DESTDIR)$(libdir)/ceph
$(install_sh_SCRIPT) -m 0755 ceph_common.sh $(DESTDIR)$(libdir)/ceph/ceph_common.sh
mkdir -p $(DESTDIR)$(sysconfdir)/init.d
$(install_sh_SCRIPT) -m 0755 init-ceph $(DESTDIR)$(sysconfdir)/init.d/ceph
$(install_sh_SCRIPT) -m 0600 sample.ceph.conf $(DESTDIR)$(sysconfdir)/ceph/sample.ceph.conf
2008-01-28 20:30:17 +00:00
2009-03-03 23:46:06 +00:00
.make_last_ver:
./make_version --check
ceph_ver.h : $(all_sources) .make_last_ver
2009-03-03 23:37:02 +00:00
./make_version
ceph_ver.c : ceph_ver.h
2008-03-13 03:16:48 +00:00
# cleaning
clean-local:
2008-03-22 18:38:08 +00:00
-rm *.so
2008-07-11 00:12:34 +00:00
# -rm crush/*.cxx
# -rm CrushWrapper.pm
2008-03-13 03:16:48 +00:00
2008-01-28 19:05:29 +00:00
# libs
2008-01-28 02:12:20 +00:00
libcommon_a_SOURCES = \
ceph_ver.c \
$(libcommon_files)
# this list ommits the ceph_ver.c file
libcommon_files = \
auth/ExportControl.cc \
2009-08-18 00:05:04 +00:00
auth/AuthManager.cc \
2009-08-19 21:02:49 +00:00
auth/CryptoTools.cc \
common/LogClient.cc \
2008-01-28 02:12:20 +00:00
msg/Message.cc \
common/Logger.cc \
2009-05-21 23:40:05 +00:00
common/ClassLibrary.cc \
2008-01-28 02:12:20 +00:00
common/Clock.cc \
common/Timer.cc \
2008-02-27 17:57:29 +00:00
common/Finisher.cc \
2008-10-10 22:52:30 +00:00
common/sctp_crc32.c\
common/assert.cc \
2009-03-13 21:05:14 +00:00
common/dyn_snprintf.c \
common/WorkQueue.cc \
common/ConfUtils.cc \
common/MemoryModel.cc \
2008-01-28 02:12:20 +00:00
mon/MonMap.cc \
mon/MonClient.cc \
osd/OSDMap.cc \
mds/MDSMap.cc \
common/tls.cc \
2009-02-09 23:46:02 +00:00
common/common_init.cc \
2009-04-20 14:00:12 +00:00
common/buffer.cc \
2009-04-20 14:23:41 +00:00
common/debug.cc \
config.cc \
2009-05-15 22:18:25 +00:00
common/lockdep.cc
2008-01-28 02:12:20 +00:00
libcrush_a_SOURCES = \
crush/builder.c \
crush/mapper.c \
crush/crush.c
libmon_a_SOURCES = \
mon/Monitor.cc \
mon/Paxos.cc \
mon/PaxosService.cc \
mon/OSDMonitor.cc \
mon/MDSMonitor.cc \
mon/ClientMonitor.cc \
mon/PGMonitor.cc \
mon/LogMonitor.cc \
mon/ClassMonitor.cc \
2008-01-28 02:12:20 +00:00
mon/Elector.cc \
mon/MonitorStore.cc
libmds_a_SOURCES = \
mds/MDS.cc \
mds/locks.c \
2008-01-28 02:12:20 +00:00
mds/journal.cc \
mds/Server.cc \
mds/MDCache.cc \
mds/Locker.cc \
mds/Migrator.cc \
mds/MDBalancer.cc \
mds/CDentry.cc \
mds/CDir.cc \
mds/CInode.cc \
mds/LogEvent.cc \
mds/MDSTable.cc \
2008-07-16 20:54:02 +00:00
mds/InoTable.cc \
mds/MDSTableClient.cc \
mds/MDSTableServer.cc \
mds/AnchorServer.cc \
mds/AnchorClient.cc \
mds/SnapServer.cc \
2008-07-02 20:30:24 +00:00
mds/snap.cc \
2008-01-28 02:12:20 +00:00
mds/SessionMap.cc \
mds/MDLog.cc
2008-03-13 03:16:48 +00:00
libos_a_SOURCES = \
2008-05-20 19:11:56 +00:00
os/FileJournal.cc \
os/FileStore.cc \
os/JournalingObjectStore.cc
2008-03-13 03:16:48 +00:00
2008-01-28 02:12:20 +00:00
libosd_a_SOURCES = \
osd/PG.cc \
osd/ReplicatedPG.cc \
osd/Ager.cc \
2009-05-15 22:18:25 +00:00
osd/OSD.cc \
2009-05-15 23:43:52 +00:00
common/ClassHandler.cc
2008-12-02 22:38:12 +00:00
# osd/RAID4PG.cc
2008-01-28 02:12:20 +00:00
libosdc_a_SOURCES = \
osdc/Objecter.cc \
osdc/ObjectCacher.cc \
osdc/Filer.cc \
osdc/Journaler.cc
libclient_a_SOURCES = \
client/Client.cc \
client/SyntheticClient.cc \
client/Trace.cc
2008-01-28 20:30:17 +00:00
# headers... and everything else we want to include in a 'make dist'
# that autotools doesn't magically identify.
2008-01-28 20:30:17 +00:00
noinst_HEADERS = \
auth/ClientTicket.h\
2009-03-23 22:39:58 +00:00
auth/ExportControl.h\
ceph_ver.h \
2008-08-18 20:15:57 +00:00
client/Client.h\
client/SyntheticClient.h\
client/Trace.h\
client/fuse.h\
client/fuse_ll.h\
client/libceph.h\
2008-08-18 20:15:57 +00:00
client/hadoop/CephFSInterface.h\
2009-06-18 20:30:49 +00:00
cls_acl.cc\
cls_crypto.cc\
2009-01-20 19:52:50 +00:00
cm.txt\
2009-05-21 23:40:05 +00:00
common/arch.h\
2009-01-20 19:52:50 +00:00
common/debug.h\
common/lockdep.h\
2008-10-31 23:17:01 +00:00
common/BackTrace.h\
common/ClassVersion.h\
2008-08-18 20:15:57 +00:00
common/Clock.h\
2009-02-09 23:46:02 +00:00
common/common_init.h\
2008-08-18 20:15:57 +00:00
common/Cond.h\
2009-03-13 21:05:14 +00:00
common/dyn_snprintf.h\
2009-05-15 22:18:25 +00:00
common/ClassHandler.h\
common/ConfUtils.h\
2008-08-18 20:15:57 +00:00
common/DecayCounter.h\
common/Finisher.h\
common/LogType.h\
common/Logger.h\
2009-06-18 20:30:49 +00:00
common/MemoryModel.h\
2008-08-18 20:15:57 +00:00
common/Mutex.h\
common/RWLock.h\
common/Semaphore.h\
2009-04-23 16:39:29 +00:00
common/Spinlock.h\
2008-08-18 20:15:57 +00:00
common/Thread.h\
common/Timer.h\
2009-02-09 23:46:02 +00:00
common/tls.h\
2008-11-19 00:46:52 +00:00
common/WorkQueue.h\
2008-12-04 00:53:38 +00:00
common/LogClient.h\
2008-08-18 20:15:57 +00:00
config.h\
crush/CrushWrapper.h\
crush/CrushWrapper.i\
crush/builder.h\
crush/crush.h\
crush/grammar.h\
crush/hash.h\
crush/mapper.h\
crush/sample.txt\
crush/types.h\
include/ClassLibrary.h\
2008-08-18 20:15:57 +00:00
include/Context.h\
include/Distribution.h\
2009-01-20 19:52:50 +00:00
include/LogEntry.h\
include/assert.h\
2008-08-18 20:15:57 +00:00
include/atomic.h\
include/bitmapper.h\
include/blobhash.h\
include/buffer.h\
include/byteorder.h\
include/ceph_fs.h\
include/color.h\
2008-10-03 00:01:10 +00:00
include/crc32c.h\
2008-08-18 20:15:57 +00:00
include/cstring.h\
include/encoding.h\
include/err.h\
include/error.h\
include/filepath.h\
include/frag.h\
include/hash.h\
include/intarith.h\
include/interval_set.h\
include/inttypes.h\
include/librados.h\
2008-08-18 20:15:57 +00:00
include/lru.h\
include/msgr.h\
2008-08-18 20:15:57 +00:00
include/nstring.h\
include/object.h\
include/page.h\
include/rangeset.h\
include/rados.h\
2008-08-18 20:15:57 +00:00
include/statlite.h\
include/triple.h\
include/tstring.h\
include/types.h\
include/uofs.h\
include/utime.h\
include/xlist.h\
2009-02-25 22:34:55 +00:00
kernel/Kconfig\
2008-08-18 20:15:57 +00:00
kernel/Makefile\
kernel/addr.c\
2009-08-19 22:10:11 +00:00
kernel/armor.c\
kernel/buffer.h\
2008-08-21 00:50:11 +00:00
kernel/caps.c\
2008-10-01 19:00:53 +00:00
kernel/ceph_debug.h\
kernel/ceph_fs.h\
kernel/ceph_ver.h\
2009-08-19 22:10:11 +00:00
kernel/crypt.c\
kernel/crypt.h\
2008-08-18 20:15:57 +00:00
kernel/crush/crush.c\
kernel/crush/crush.h\
kernel/crush/hash.h\
kernel/crush/mapper.c\
kernel/crush/mapper.h\
kernel/debugfs.c\
kernel/decode.h\
kernel/dir.c\
kernel/export.c\
kernel/file.c\
kernel/inode.c\
2008-08-18 20:15:57 +00:00
kernel/ioctl.c\
kernel/ioctl.h\
2009-02-25 22:34:55 +00:00
kernel/kbuild.patch\
kernel/mds_client.c\
2008-02-29 23:34:05 +00:00
kernel/mds_client.h\
kernel/mdsmap.c\
kernel/mdsmap.h\
kernel/messenger.c\
kernel/messenger.h\
kernel/mon_client.c\
kernel/mon_client.h\
2009-08-17 19:36:47 +00:00
kernel/msgpool.c\
kernel/msgpool.h\
2009-06-22 22:50:16 +00:00
kernel/msgr.h\
kernel/osd_client.c\
2008-02-29 23:34:05 +00:00
kernel/osd_client.h\
kernel/osdmap.c\
kernel/osdmap.h\
2009-06-22 22:50:16 +00:00
kernel/rados.h\
2008-08-18 20:15:57 +00:00
kernel/snap.c\
kernel/super.c\
kernel/super.h\
2008-08-18 20:15:57 +00:00
kernel/types.h\
2009-01-20 19:52:50 +00:00
mds/locks.c\
mds/locks.h\
2008-08-18 20:15:57 +00:00
mds/Anchor.h\
mds/AnchorClient.h\
mds/AnchorServer.h\
mds/CDentry.h\
mds/CDir.h\
mds/CInode.h\
mds/Capability.h\
mds/InoTable.h\
mds/LocalLock.h\
mds/Locker.h\
mds/LogEvent.h\
mds/LogSegment.h\
mds/MDBalancer.h\
mds/MDCache.h\
mds/MDLog.h\
mds/MDS.h\
mds/MDSMap.h\
mds/MDSTable.h\
mds/MDSTableServer.h\
mds/MDSTableClient.h\
mds/Migrator.h\
mds/ScatterLock.h\
mds/Server.h\
mds/SessionMap.h\
mds/SimpleLock.h\
mds/SnapClient.h\
mds/SnapServer.h\
mds/events/ECommitted.h\
mds/events/EExport.h\
mds/events/EFragment.h\
mds/events/EImportFinish.h\
mds/events/EImportStart.h\
mds/events/EMetaBlob.h\
mds/events/EOpen.h\
mds/events/ESession.h\
mds/events/ESessions.h\
mds/events/ESlaveUpdate.h\
mds/events/EString.h\
mds/events/ESubtreeMap.h\
mds/events/ETableClient.h\
mds/events/ETableServer.h\
mds/events/EUpdate.h\
mds/mds_table_types.h\
mds/mdstypes.h\
mds/snap.h\
messages/MCacheExpire.h\
messages/MClass.h\
messages/MClassAck.h\
2008-08-18 20:15:57 +00:00
messages/MClientCaps.h\
messages/MClientCapRelease.h\
2008-08-18 20:15:57 +00:00
messages/MClientLease.h\
messages/MClientMount.h\
2009-03-23 22:39:58 +00:00
messages/MClientMountAck.h\
2008-08-18 20:15:57 +00:00
messages/MClientReconnect.h\
messages/MClientReply.h\
messages/MClientRequest.h\
messages/MClientRequestForward.h\
messages/MClientSession.h\
messages/MClientSnap.h\
messages/MClientUnmount.h\
messages/MDentryUnlink.h\
messages/MDirUpdate.h\
messages/MDiscover.h\
messages/MDiscoverReply.h\
messages/MExportCaps.h\
messages/MExportCapsAck.h\
messages/MExportDir.h\
messages/MExportDirAck.h\
messages/MExportDirCancel.h\
messages/MExportDirDiscover.h\
messages/MExportDirDiscoverAck.h\
messages/MExportDirFinish.h\
messages/MExportDirNotify.h\
messages/MExportDirNotifyAck.h\
messages/MExportDirPrep.h\
messages/MExportDirPrepAck.h\
messages/MExportDirWarning.h\
messages/MExportDirWarningAck.h\
messages/MGenericMessage.h\
2009-06-11 00:52:39 +00:00
messages/MGetPoolStats.h\
messages/MGetPoolStatsReply.h\
2008-08-18 20:15:57 +00:00
messages/MHeartbeat.h\
messages/MInodeFileCaps.h\
messages/MLock.h\
2009-01-20 19:52:50 +00:00
messages/MLog.h\
messages/MLogAck.h\
2008-08-18 20:15:57 +00:00
messages/MMDSBeacon.h\
messages/MMDSBoot.h\
messages/MMDSCacheRejoin.h\
messages/MMDSFragmentNotify.h\
messages/MMDSGetMap.h\
messages/MMDSMap.h\
messages/MMDSResolve.h\
messages/MMDSResolveAck.h\
messages/MMDSSlaveRequest.h\
messages/MMDSTableRequest.h\
messages/MMonCommand.h\
messages/MMonCommandAck.h\
messages/MMonElection.h\
messages/MMonGetMap.h\
messages/MMonMap.h\
2008-12-10 20:19:15 +00:00
messages/MMonObserve.h\
messages/MMonObserveNotify.h\
2008-08-18 20:15:57 +00:00
messages/MMonPaxos.h\
messages/MOSDAlive.h\
messages/MOSDBoot.h\
messages/MOSDFailure.h\
messages/MOSDGetMap.h\
messages/MOSDIn.h\
messages/MOSDMap.h\
messages/MOSDOp.h\
messages/MOSDOpReply.h\
messages/MOSDOut.h\
messages/MOSDPGCreate.h\
messages/MOSDPGInfo.h\
messages/MOSDPGLog.h\
messages/MOSDPGNotify.h\
messages/MOSDPGQuery.h\
messages/MOSDPGRemove.h\
2009-06-18 20:30:49 +00:00
messages/MOSDPGTrim.h\
2008-08-18 20:15:57 +00:00
messages/MOSDPing.h\
2009-01-20 19:52:50 +00:00
messages/MOSDScrub.h\
2008-08-18 20:15:57 +00:00
messages/MOSDSubOp.h\
messages/MOSDSubOpReply.h\
messages/MPGStats.h\
messages/MPGStatsAck.h\
messages/MPing.h\
2009-07-07 22:06:33 +00:00
messages/MPoolOp.h\
messages/MPoolOpReply.h\
2008-08-18 20:15:57 +00:00
messages/MRemoveSnaps.h\
messages/MStatfs.h\
messages/MStatfsReply.h\
messages/PaxosServiceMessage.h\
mon/ClassMonitor.h\
2008-12-10 20:19:15 +00:00
mon/ClientMap.h\
2008-08-18 20:15:57 +00:00
mon/ClientMonitor.h\
mon/Elector.h\
2009-01-20 19:52:50 +00:00
mon/LogMonitor.h\
2008-08-18 20:15:57 +00:00
mon/MDSMonitor.h\
mon/MonClient.h\
mon/MonMap.h\
mon/Monitor.h\
mon/MonitorStore.h\
mon/OSDMonitor.h\
mon/PGMap.h\
mon/PGMonitor.h\
mon/Paxos.h\
mon/PaxosService.h\
mon/mon_types.h\
2009-07-21 23:42:19 +00:00
mount/mtab.c\
2008-08-18 20:15:57 +00:00
msg/Dispatcher.h\
msg/FakeMessenger.h\
msg/Message.h\
msg/Messenger.h\
msg/SimpleMessenger.h\
msg/msg_types.h\
msg/tcp.cc\
msg/tcp.h\
2009-06-18 20:30:49 +00:00
objclass/objclass.h\
2008-08-18 20:15:57 +00:00
os/BDBMap.h\
os/Fake.h\
os/FakeStoreBDBCollections.h\
os/FileJournal.h\
os/FileStore.h\
os/Journal.h\
os/JournalingObjectStore.h\
os/ObjectStore.h\
osbdb/OSBDB.h\
osd/Ager.h\
osd/OSD.h\
osd/OSDMap.h\
osd/ObjectVersioner.h\
osd/PG.h\
2009-06-18 20:30:49 +00:00
osd/PGLS.h\
2008-08-18 20:15:57 +00:00
osd/RAID4PG.h\
osd/ReplicatedPG.h\
osd/osd_types.h\
osdc/Blinker.h\
osdc/Filer.h\
osdc/Journaler.h\
osdc/ObjectCacher.h\
osdc/Objecter.h\
radosgw/rgw_access.h\
radosgw/rgw_acl.h\
radosgw/rgw_fs.h\
radosgw/rgw_rados.h\
radosgw/rgw_op.h\
radosgw/rgw_rest.h\
radosgw/rgw_common.h\
radosgw/rgw_user.h\
2009-03-11 23:28:52 +00:00
sample.ceph.conf
all_sources = $(cmon_SOURCES) $(ceph_SOURCES) $(mkmonfs_SOURCES) $(monmaptool_SOURCES) \
$(crushtool_SOURCES) $(osdmaptool_SOURCES) $(cconf_SOURCES) $(mount_ceph_SOURCES) $(cmds_SOURCES) \
$(dumpjournal_SOURCES) $(cosd_SOURCES) $(dupstore_SOURCES) $(streamtest_SOURCES) $(csyn_SOURCES) \
$(testmsgr_SOURCES) $(cfuse_SOURCES) $(fakefuse_SOURCES) $(psim_SOURCES) \
$(libcrush_so_a_SOURCES) $(libcommon_files) $(libcrush_a_SOURCES) \
$(libmon_a_SOURCES) $(libmds_a_SOURCES) $(libos_a_SOURCES) $(libosd_a_SOURCES) \
$(libosdc_a_SOURCES) $(libclient_a_SOURCES)