Initialize Git Repository: 'UGREEN-NAS-LED'
UGREEN NAS / UGREEN NAS (amd64, cicd.trixie, trixie, main, x86_64-linux-gnu-g++-14) (push) Successful in 18s

This commit is contained in:
Cantibra
2026-05-04 21:22:07 +02:00
commit 1d619c40a0
31 changed files with 2511 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)