Armin Friedl
4945bbd45c
All checks were successful
continuous-integration/drone/push Build is passing
12 lines
198 B
Makefile
12 lines
198 B
Makefile
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
|