mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
823435ce65
This is a simple program with lots of explanatory comments people can use as a model for using librados. Signed-off-by: Greg Farnum <greg@inktank.com>
5 lines
162 B
Makefile
5 lines
162 B
Makefile
all: hello_world.cc
|
|
g++ -g -c hello_world.cc -o hello_world.o
|
|
g++ -g hello_world.o -lrados -o librados_hello_world
|
|
clean:
|
|
rm hello_world.o librados_hello_world
|