xwim/Makefile

13 lines
198 B
Makefile
Raw Normal View History

2021-02-07 18:59:05 +00:00
all: compile_commands.json
cd build && ninja
compile_commands.json:
cd build && ninja -t compdb > compile_commands.json
clean:
cd build && ninja -t clean
.PHONY:
compile_commands.json
clean