vitastor/Makefile

6 lines
162 B
Makefile
Raw Normal View History

2019-11-03 22:04:25 +03:00
all: allocator.o blockstore.o blockstore_init.o blockstore_open.o blockstore_read.o test
2019-10-31 13:49:46 +03:00
%.o: %.cpp
gcc -c -o $@ $<
test: test.cpp
gcc -o test -luring test.cpp