Cjson update

This commit is contained in:
Imbus 2025-08-12 03:24:56 +02:00
parent 88146af0ad
commit 4056473705
2 changed files with 15 additions and 2 deletions

12
cjson/Makefile Normal file
View file

@ -0,0 +1,12 @@
CC ?= gcc
CFLAGS ?= -Wall -O2 -lcjson
TARGET = main.elf
SRC = main.c
$(TARGET): $(SRC)
@echo CC $@
@$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(TARGET)