FloatImg/v4l2/Makefile

17 lines
240 B
Makefile
Raw Normal View History

2019-05-24 17:40:13 +02:00
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1
DEPS = ../floatimg.h ../libfloatimg.a Makefile
t: t.c Makefile ${DEPS}
2019-05-25 11:56:56 +02:00
gcc ${COPT} $< ../libfloatimg.a -o $@
# --------
# extern things
capture: capture.c Makefile
gcc -Wall $< -o $@