Added display of fan status and temperature sensors.

This commit is contained in:
2025-01-29 05:35:31 -08:00
parent 23a734cf0a
commit bcd4457c2f
6 changed files with 264 additions and 195 deletions
+7 -4
View File
@@ -1,13 +1,16 @@
.PHONY : clean debug
OBJS = evga-icx.o evga-card.o icx3.o
LDLIBS = -li2c
objects = evga-icx.o
CFLAGS = -MD
evga-icx : $(objects)
evga-icx : $(OBJS)
debug : CFLAGS += -g -O0
debug : evga-icx
clean :
rm evga-icx $(objects)
rm evga-icx $(OBJS)
rm *.d
-include $(OBJS:.o=.d)