You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
386 B
Makefile
22 lines
386 B
Makefile
|
|
|
|
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1
|
|
DEPS = ../floatimg.h ../libfloatimg.a Makefile
|
|
|
|
funcs.o: funcs.c funcs.h Makefile
|
|
gcc ${COPT} -c $<
|
|
|
|
t: t.c Makefile ${DEPS} funcs.o
|
|
gcc ${COPT} $< funcs.o ../libfloatimg.a -o $@
|
|
|
|
# ---------------
|
|
# external things
|
|
|
|
capture: capture.c Makefile
|
|
gcc -Wall -g $< -o $@
|
|
|
|
grabvidseq: grabvidseq.c Makefile
|
|
gcc -Wall -g $< -lv4l2 -o $@
|
|
|
|
|