vitastor/Makefile

8 lines
218 B
Makefile

all: allocator.o blockstore.o blockstore_init.o blockstore_open.o blockstore_read.o crc32c.o ringloop.o test
crc32c.o: crc32c.c
gcc -c -o $@ $<
%.o: %.cpp
gcc -c -o $@ $<
test: test.cpp
gcc -o test -luring test.cpp