Makefile and wildcard targets -
i have directory many files. run command against these files (ie. md5sum). instead of keep recomputing checksum store checksum. compute checksums in parallel manner (make -j)
something like:
md5sums: $(addsuffix .md5sum,$(wildcard *.foo)) %.md5sum: % md5sum $< > $@
that's best can limited description available.
Comments
Post a Comment