* Tweaked default value for blur parameter.
authorUrban Wallasch <urban.wallasch@freenet.de>
Sat, 5 Jun 2021 17:06:51 +0000 (19:06 +0200)
committerUrban Wallasch <urban.wallasch@freenet.de>
Sat, 5 Jun 2021 17:06:51 +0000 (19:06 +0200)
* Removed cruft from Makefile.

Makefile
main.c

index dd519c977ac696c1e4142f36296fd694f65b3832..b2a62dbaf455e5bec385e70513aff31407dd5279 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ LIBS    := -lpthread $(shell pkg-config --libs GraphicsMagickWand)
 STRIP   := strip
 RM      := rm -f
 
-.PHONY: all clean distclean
+.PHONY: all clean
 
 all: $(BIN)
 
@@ -33,9 +33,6 @@ $(BIN): $(OBJ) $(SELF)
 clean:
        $(RM) $(BIN) $(OBJ) $(DEP)
 
-distclean: clean
-       $(RM) config.h
-
 -include $(DEP)
 
 # EOF
diff --git a/main.c b/main.c
index 2a824832d5971eb5e54f289a411389727b493a0e..ee2db12a0ead278f37b1dda23498b6d4b14d0994 100644 (file)
--- a/main.c
+++ b/main.c
@@ -30,7 +30,7 @@ static struct {
     .db_outfile = NULL,
     .db_prune = 0,
     .rescan = 0,
-    .blur = 1.5,
+    .blur = 2.5,
     .thresh = 256,
     .max_fd = 1000,
     .nthreads = 4,