evga-icx/makefile

16 lines
212 B
Makefile
Raw Normal View History

2025-01-19 23:27:43 -08:00
.PHONY : clean debug
OBJS = evga-icx.o evga-card.o icx3.o
2025-01-19 23:27:43 -08:00
LDLIBS = -li2c
CFLAGS = -MD
2025-01-19 23:27:43 -08:00
evga-icx : $(OBJS)
2025-01-19 23:27:43 -08:00
debug : CFLAGS += -g -O0
debug : evga-icx
clean :
rm evga-icx $(OBJS)
rm *.d
-include $(OBJS:.o=.d)