evga-icx/makefile
2025-01-19 23:27:43 -08:00

13 lines
158 B
Makefile

.PHONY : clean debug
LDLIBS = -li2c
objects = evga-icx.o
evga-icx : $(objects)
debug : CFLAGS += -g -O0
debug : evga-icx
clean :
rm evga-icx $(objects)