mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 17:40:34 +00:00
16 lines
246 B
Makefile
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
|