################################################## # Derive a few text files from the Comprehensive # # LaTeX Symbol List. # # # # Author: Scott Pakin # ################################################## # Create a list of all symbols. rule create-symlist command = ./generate-symlist $in > $out description = Create $out # We arbitrarily choose the index from the U.S. Letter-sized document # to count symbols. build SYMLIST : create-symlist build-letter/symbols-letter-full.ind | generate-symlist # Create a README file. rule create-readme command = ./makeREADME $log $$(wc -l $syms) > $out description = Create $out build README : create-readme makeREADME build-letter/symbols-letter.log SYMLIST log = build-letter/symbols-letter.log syms = SYMLIST