FloatImg/v4l2/Makefile

17 lines
240 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 $@
# --------
# extern things
capture: capture.c Makefile
gcc -Wall $< -o $@