Bibliothèque de traitements d'images en virgule flottante.
http://la.buvette.org/photos/cumul/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
657 B
31 lines
657 B
|
|
|
|
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1 |
|
DEPS = ../floatimg.h ../libfloatimg.a Makefile |
|
|
|
all: grabvidseq t |
|
|
|
t: t.c Makefile ${DEPS} funcs.o v4l2_pr_structs.o |
|
gcc ${COPT} $< funcs.o v4l2_pr_structs.o ../libfloatimg.a -o $@ |
|
|
|
funcs.o: funcs.c funcs.h Makefile |
|
gcc ${COPT} -c $< |
|
|
|
v4l2_pr_structs.o: v4l2_pr_structs.c v4l2_pr_structs.h Makefile |
|
gcc ${COPT} -c $< |
|
|
|
grabvidseq: grabvidseq.c Makefile |
|
gcc -Wall -g $< ../libfloatimg.a -lv4l2 -o $@ |
|
|
|
video-infos: video-infos.c Makefile funcs.o v4l2_pr_structs.o |
|
gcc -Wall -g $< funcs.o v4l2_pr_structs.o -o $@ |
|
|
|
|
|
# --------------- |
|
# external things |
|
|
|
capture: capture.c Makefile |
|
gcc -Wall -g $< -o $@ |
|
|
|
|
|
|
|
|