This commit is contained in:
2025-01-19 23:27:43 -08:00
commit 23a734cf0a
8 changed files with 633 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY : clean debug
LDLIBS = -li2c
objects = evga-icx.o
evga-icx : $(objects)
debug : CFLAGS += -g -O0
debug : evga-icx
clean :
rm evga-icx $(objects)