forked from tTh/FloatImg
9 lines
153 B
Makefile
9 lines
153 B
Makefile
|
|
||
|
|
||
|
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1
|
||
|
DEPS = ../floatimg.h ../libfloatimg.a Makefile
|
||
|
|
||
|
|
||
|
|
||
|
t: t.c Makefile ${DEPS}
|
||
|
gcc ${COPT} $< ../libfloatimg.a -o $@
|