Initialize Git Repository: 'UGREEN-NAS-LED'
UGREEN NAS / UGREEN NAS (push) Successful in 16s

This commit is contained in:
Cantibra
2026-05-12 06:30:21 +02:00
commit 07d84afd0a
31 changed files with 2478 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
CC = g++
CFLAGS = -I. -O2 -Wall
DEPS = i2c.h main.h
OBJ = i2c.o main.o
%.o: %.cpp $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
ugreen-led-cli: $(OBJ) ugreen-led-cli.o
$(CC) -o $@ $^ $(CFLAGS)