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

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -