evga-icx/makefile

16 lines
212 B
Makefile

.PHONY : clean debug
OBJS = evga-icx.o evga-card.o icx3.o
LDLIBS = -li2c
CFLAGS = -MD
evga-icx : $(OBJS)
debug : CFLAGS += -g -O0
debug : evga-icx
clean :
rm evga-icx $(OBJS)
rm *.d
-include $(OBJS:.o=.d)