Files
scylladb/Makefile
Avi Kivity b14e2069eb build: store build.ninja outside build directory
This preserves configuration options after a make clean (and
also allows you to call ninja-build directly).
2014-09-19 12:58:16 +03:00

16 lines
232 B
Makefile

out = build
all: build.ninja
@ninja-build -f $<
build.ninja:
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