first commit

This commit is contained in:
cyy_mac
2026-06-16 08:44:45 +08:00
commit 938e3e04ac
57 changed files with 2396 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
CC = arm-linux-gcc
CFLAGS = -Wall -O2 -I .
SRCS = main.c \
desktop/desktop.c album/album.c ir_app/ir_app.c button/button.c \
common/device.c common/tools.c
TARGET = mini_desktop
.PHONY: all static clean
static: $(TARGET)
@file $(TARGET)
$(TARGET): $(SRCS)
$(CC) $(CFLAGS) -static -o $@ $(SRCS)
clean:
rm -f $(TARGET) test/*_static