On Monday, March 11, 2019 at 3:00:34 PM UTC-4, Brian Adkins wrote: > > I looked over the documentation for raco make, and I didn't see anything > about how to recursively make all *.rkt files in a directory tree. I > suppose I could use something like: find . -name \*.rkt | xargs raco make, > but I like being able to use all 8 "cores" with -j 8, and I *think* I'd > lose that with xargs. > > What is the best practice for making a tree of Racket code? > > Thanks, > Brian >
Hmm... maybe the problem was just my lack of shell skills. I think the following works: raco make -j 8 */*.rkt -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.