Set up compile_commands.json generation

This commit is contained in:
2024-05-19 15:58:35 +03:00
parent 489c60f220
commit df4c777bed
3 changed files with 28 additions and 12 deletions

26
Makefile Normal file
View File

@@ -0,0 +1,26 @@
BIN=./dim
CC=gcc
CCARGS=-Isrc/include -Wall -pedantic
MODULES= \
modules/clock.dim \
modules/battery.dim\
all: $(BIN) $(MODULES) compile_commands.json
$(BIN): src/main.c src/plug.c
$(CC) -o $@ $^ $(CCARGS) -lX11 -ldl
modules/%.dim: src/modules/%.c
$(CC) -o $@ $^ -rdynamic -shared -fPIC $(CCARGS)
compile_commands.json:
compiledb -n make