ceph/examples/librados/Makefile
Greg Farnum 823435ce65 examples: add a librados/hello_world program
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>
2013-08-19 14:55:09 -07:00

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