Files
scylladb/Makefile
Avi Kivity f98c99b210 build: build everything by default
So people don't break the debug build randomly.
2014-09-18 20:57:07 +03:00

16 lines
246 B
Makefile

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