mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-24 18:40:38 +00:00
16 lines
245 B
Makefile
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
|