vitastor/Makefile

10 lines
255 B
Makefile
Raw Normal View History

2019-11-07 02:24:12 +03:00
all: allocator.o blockstore.o blockstore_init.o blockstore_open.o blockstore_read.o blockstore_write.o crc32c.o ringloop.o test
clean:
rm -f *.o
2019-11-04 01:42:40 +03:00
crc32c.o: crc32c.c
gcc -c -o $@ $<
2019-10-31 13:49:46 +03:00
%.o: %.cpp
gcc -c -o $@ $<
test: test.cpp
gcc -o test -luring test.cpp