Software Development with C++: Recursive make

Поділитися
Вставка
  • Опубліковано 18 жов 2024
  • In this video we look at the basics of using make recursively!
    GNU make recursion: www.gnu.org/so...
    For code samples: github.com/coff...
    For live content: / coffeebeforearch

КОМЕНТАРІ • 4

  • @unperrier5998
    @unperrier5998 Місяць тому +1

    Even though you've refactored to allow parallelism, it's a shame that you didn't show that "make -j2" actually builds the directories in parallel.

  • @unperrier5998
    @unperrier5998 Місяць тому

    Is there a reason why you'e not using $(RM) instead of manully calling "frm -rf"

  • @pcoccoli
    @pcoccoli Рік тому

    While you *can* do recursive make (and indeed it seems like everybody does), you absolutely shouldn't.