vitastor/Makefile

19 lines
1.1 KiB
Makefile
Raw Normal View History

BLOCKSTORE_OBJS := allocator.o blockstore.o blockstore_init.o blockstore_open.o blockstore_journal.o blockstore_read.o \
2019-12-14 20:51:41 +03:00
blockstore_write.o blockstore_sync.o blockstore_stable.o blockstore_flush.o crc32c.o ringloop.o timerfd_interval.o osd.o
CXXFLAGS := -g -O3 -Wall -Wno-sign-compare -Wno-comment -Wno-parentheses -Wno-pointer-arith -fPIC -fdiagnostics-color=always
2019-11-26 00:02:54 +03:00
all: $(BLOCKSTORE_OBJS) test test_blockstore libfio_blockstore.so
clean:
rm -f *.o
2019-11-04 01:42:40 +03:00
crc32c.o: crc32c.c
2019-12-14 20:51:41 +03:00
g++ $(CXXFLAGS) -c -o $@ $<
2019-11-26 02:18:37 +03:00
%.o: %.cpp allocator.h blockstore_flush.h blockstore.h blockstore_init.h blockstore_journal.h crc32c.h ringloop.h xor.h timerfd_interval.h
2019-12-14 20:51:41 +03:00
g++ $(CXXFLAGS) -c -o $@ $<
test: test.cpp
2019-12-14 20:51:41 +03:00
g++ $(CXXFLAGS) -o test -luring test.cpp
test_blockstore: $(BLOCKSTORE_OBJS) test_blockstore.cpp
2019-12-14 20:51:41 +03:00
g++ $(CXXFLAGS) -o test_blockstore -ltcmalloc_minimal -luring test_blockstore.cpp $(BLOCKSTORE_OBJS)
2019-11-27 01:12:25 +03:00
test_allocator: test_allocator.cpp allocator.o
2019-12-14 20:51:41 +03:00
g++ $(CXXFLAGS) -o test_allocator test_allocator.cpp allocator.o
2019-11-26 00:02:54 +03:00
libfio_blockstore.so: fio_engine.cpp $(BLOCKSTORE_OBJS)
2019-12-14 20:51:41 +03:00
g++ $(CXXFLAGS) -ltcmalloc_minimal -shared -luring -o libfio_blockstore.so fio_engine.cpp $(BLOCKSTORE_OBJS)