Comparar commits

...

2 Commits

Autor SHA1 Mensaje Fecha
phyto
51190aa1c4 making 'mkfimg' more quiet 2019-06-30 17:50:34 +02:00
phyto
f30d66eeb3 small bug in v4l2 makefile 2019-06-30 17:47:17 +02:00
Se han modificado 2 ficheros con 4 adiciones y 2 borrados

Ver fichero

@ -27,7 +27,7 @@ if (foo) {
fprintf(stderr, "create floatimg -> %d\n", foo);
exit(1);
}
fimg_describe(&fimg, "just a black flimg");
// fimg_describe(&fimg, "just a black flimg");
fimg_clear(&fimg);
foo = fimg_dump_to_file(&fimg, fname, 0);

Ver fichero

@ -3,6 +3,8 @@
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1
DEPS = ../floatimg.h ../libfloatimg.a Makefile
all: grabvidseq t
t: t.c Makefile ${DEPS} funcs.o
gcc ${COPT} $< funcs.o ../libfloatimg.a -o $@