Files
scylladb/Makefile
2014-09-24 15:11:34 +03:00

16 lines
245 B
Makefile

out = build
all: build.ninja
@ninja-build -f $<
build.ninja: configure.py
python3 configure.py
clean:
rm -rf $(out)
cscope:
find -name '*.[chS]' -o -name "*.cc" -o -name "*.hh" | cscope -bq -i-
@echo cscope index created
.PHONY: cscope