13 lines
158 B
Makefile
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)
|
|
|