vitastor/Makefile

8 lines
218 B
Makefile
Raw Normal View History

2019-11-05 02:12:04 +03:00
all: allocator.o blockstore.o blockstore_init.o blockstore_open.o blockstore_read.o crc32c.o ringloop.o test
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