• smeg@feddit.uk
    link
    fedilink
    English
    arrow-up
    27
    arrow-down
    2
    ·
    2 days ago

    Do all three of them still treat tabs and spaces as functionally different? If so then they’re all in the bottom category.

  • bestboyfriendintheworld@sh.itjust.works
    link
    fedilink
    arrow-up
    11
    arrow-down
    1
    ·
    2 days ago

    I really like Ruby’s rake. It’s an actually sane language and quick to learn. No idiosyncratic shell scripts cobbled together. The makefile is written in plain Ruby. That also makes it super powerful to adapt to your needs. Nor parsing XML. Just load your rake file into your interactive Ruby shell (I’m partial to pry), try things, test it. Our time for debugging build errors dropped to a fraction.

    I have used it build C++, Objective-C, and Java projects for a medium sized company. Before that we used ant with XML build files from hell.

    • takeda@lemm.ee
      link
      fedilink
      arrow-up
      33
      arrow-down
      1
      ·
      edit-2
      2 days ago

      Make was created for building code, but many people are also using it as a command runner.

      Just addresses that use case, but it’s not a replacement for either of those makes.

      • barsoap@lemm.ee
        link
        fedilink
        arrow-up
        2
        ·
        1 day ago

        If you want a really advanced build system there’s shake, which can deal with things like building things that generates dependency information for things that build things. In a nutshell: It’s strictly more powerful than make because (a single invocation of) make operates on a fixed dependency graph while shake can discover dependencies as it goes.

        Mostly though you should use whatever comes with the language you’re using, and if you’re doing something simple use make. That includes “link a multi-language project where the components are generated by language-specific systems”. It notably doesn’t include multi-stage compiler builds. GHC switched from recursive make, which is a bad idea, to non-recursive make, which was… arcane, but at least you didn’t have to make clean to get a correct build, to shake. Here’s the build system it’s a whole project to itself.

      • onlinepersona@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        1 day ago

        Everything has it’s uses. make is maybe good at incremental builds but is (an)used as a task runner which requires the use of “PHONY” in many places, it has about 6 different ways to declare and use variables all with different gotchas, generally has a convoluted syntax, it doesn’t support different interpreters per task, and lacks a bunch more features. Just explore the feature list and examples that just has.

        It’s simply outdated and mostly lives by the power of defaults and graybeards insisting on its use. Therecs no surprise that things like cmake, nmake, and other tools sprung up to replace it.

        Anti Commercial-AI license

      • renzev@lemmy.world
        link
        fedilink
        arrow-up
        3
        ·
        2 days ago

        So it’s like make but without incremental builds? Then how is it functionally different from a folder with a bunch of shell scripts in it?