please I need your help!
In order to get a list of thumbnails associated with a list of photos, I've use the following Makefile (the project's directory has 2 subdirectories thumbs and pictures)
all: $(patsubst pictures/%.jpg, thumbs/%.jpg, $(wilcard pictures/*.jpg))
thumbs/%.jpg: pictures/%.jpg
convert -thumbnail 100 $< $*
The problem is that I always get the same error message "Nothing to be done for 'all'", as if there was no dependencies. :( Has anybody an explanation for that?