Nuke treeset

This commit is contained in:
Imbus 2025-07-30 00:51:55 +02:00
parent 45ef1c4271
commit 02e80b3827
5 changed files with 184 additions and 0 deletions

12
filters/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)