Compare commits

...

2 Commits

Author SHA1 Message Date
tth 97698bb66f omg ! a serious bug in the Makefile 2021-04-01 22:40:28 +02:00
tth d44591d0d9 bla 2021-04-01 22:23:46 +02:00
2 changed files with 14 additions and 7 deletions

View File

@ -9,7 +9,8 @@ LIBS = ../libfloatimg.a -ltiff -lpnglite -lm -lz -lcfitsio
OBJS = fonctions.o sfx.o crapulator.o glitches.o metriques.o \
filterstack.o single.o
DEPS = fonctions.h crapulator.h metriques.h glitches.h sfx.h \
DEPS = ../floatimg.h \
fonctions.h crapulator.h metriques.h glitches.h sfx.h \
filterstack.h crapdef.h crapstr.h single.h
all: fonderie interpolator singlepass t

View File

@ -217,8 +217,8 @@ char *out_dir = "p8";
// OBSOLETE int out_effect = 0;
int steps = 1;
int blanks = 20;
char *InFchain = "0";
char *OutFchain = "0";
char *InFchain = "none";
char *OutFchain = "none";
fprintf(stderr, "*** %s\n\tcompiled %s, %s, pid %d\n",
argv[0], __DATE__, __TIME__, getpid());
@ -255,10 +255,10 @@ while ((opt = getopt(argc, argv, "B:E:F:ghI:LO:s:T:vw:x:")) != -1) {
}
if (verbosity) {
fprintf(stderr, "input glob '%s'\n", in_pattern);
fprintf(stderr, "output dir '%s'\n", out_dir);
fprintf(stderr, "src filter '%s'\n", InFchain);
fprintf(stderr, "out filter '%s'\n", OutFchain);
fprintf(stderr, "\tinput glob '%s'\n", in_pattern);
fprintf(stderr, "\toutput dir '%s'\n", out_dir);
fprintf(stderr, "\tsrc filter '%s'\n", InFchain);
fprintf(stderr, "\tout filter '%s'\n", OutFchain);
}
foo = parse_filter_chain(0, InFchain);
@ -272,6 +272,12 @@ if (foo) {
exit(1);
}
if (verbosity) {
filterstack_list(0, "input");
filterstack_list(1, "ouput");
fprintf(stderr, ".\n");
}
foo = demarre_la_machine(in_pattern, out_dir, fifosize, 0,
0, steps, blanks);
fprintf(stderr, "retour du big-run de la machine -> %d\n", foo);