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

java - unable show chart in xls document using jasper reports -

javascript - How to change image src on success AJAX -

java.lang.RuntimeException: Could not generate dummy secret at sun.security.ssl.RSAClientKeyExchange.<init> -