This commit is contained in:
Imbus 2025-08-24 12:47:13 +02:00
parent 6a58763ece
commit 38d078509e
4 changed files with 109 additions and 0 deletions

12
message/Makefile Normal file
View file

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