xwim/Makefile
Armin Friedl 4945bbd45c
All checks were successful
continuous-integration/drone/push Build is passing
Add Makefile
2021-02-07 19:59:05 +01:00

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