forked from tTh/FloatImg
micro tweaks
This commit is contained in:
parent
411aad94d7
commit
db037c5d12
|
@ -2,7 +2,7 @@
|
|||
# building the base library
|
||||
#
|
||||
|
||||
COPT = -Wall -fpic -g -pg -no-pie -DDEBUG_LEVEL=0
|
||||
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
|
||||
OBJS = fimg-core.o fimg-pnm.o fimg-file.o fimg-math.o \
|
||||
fimg-timers.o operators.o
|
||||
DEPS = Makefile ../floatimg.h
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
COPT = -Wall -fpic -g -pg -no-pie -DDEBUG_LEVEL=1
|
||||
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=1
|
||||
DEPS = ../floatimg.h ../libfloatimg.a Makefile
|
||||
|
||||
all: grabvidseq t
|
||||
|
|
|
@ -66,11 +66,14 @@ if (r == -1) {
|
|||
/* --------------------------------------------------------------------- */
|
||||
void help(int v)
|
||||
{
|
||||
if (verbosity) {
|
||||
printf("compiled %s at %s\n", __DATE__, __TIME__);
|
||||
}
|
||||
puts("options :");
|
||||
puts("\t-d /dev/?\tselect video device");
|
||||
puts("\t-n NNN\t\thow many frames ?");
|
||||
puts("\t-O ./\t\tset Output dir");
|
||||
puts("\t-o bla\t\tset oputput filename");
|
||||
puts("\t-o bla\t\tset output filename");
|
||||
puts("\t-p NNN\t\tperiod in seconds");
|
||||
puts("\t-v\t\tincrease verbosity");
|
||||
exit(0);
|
||||
|
|
Loading…
Reference in New Issue