Which will probably be never.

  • KindaABigDyl@programming.dev
    link
    fedilink
    arrow-up
    32
    arrow-down
    3
    ·
    28 days ago

    Life is and will always be better writing your own Makefiles. It’s literally so easy. I do not get the distaste. Cmake is arcane magic. Bazel is practically written in runes. Makefile is a just a glorified build script, but where you don’t have to use a bunch of if statements to avoid building everything each time.

    • TheReturnOfPEB@reddthat.com
      link
      fedilink
      English
      arrow-up
      17
      arrow-down
      1
      ·
      edit-2
      28 days ago

      really anyone worth their salt should write perl code to generate makefiles depending on the phase of the moon and if you sacrificed a $chicken, a @chicken, or a %chicken at runtime.

    • CanadaPlus@lemmy.sdf.org
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      28 days ago

      It’s one of those massively elegant concepts of the past that’s become unfashionable to learn pretty much just do to time and ubiquity.

    • leggettc18@programming.dev
      link
      fedilink
      English
      arrow-up
      6
      ·
      28 days ago

      That works until you need to support Visual Studio or Xcode. Then you either maintain their stuff manually too, or you get CMake to generate all three. I don’t love it but it solves the problem it’s meant to solve. The issue is people using it when they don’t need to.

      • zaphod@sopuli.xyz
        link
        fedilink
        arrow-up
        3
        ·
        27 days ago

        Xcode implies MacOS, you can use make there too, just beware that some commandline tools take different arguments on BSDs.

      • Hack3900@lemy.lol
        link
        fedilink
        arrow-up
        3
        ·
        27 days ago

        I’m not familiar with either why can’t you use Make with VS or Xcode? Can you not set them up to have whatever build bind call Make ?

      • KindaABigDyl@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        24 days ago

        You can build with mingw64 built with msvc and use more or less the same Makefile. As for Xcode… well, there’s not really a good reason to support Mac. On principle I wouldn’t even try

    • Socsa@sh.itjust.works
      link
      fedilink
      arrow-up
      4
      ·
      27 days ago

      Manual makefiles don’t scale though and you end up needing some other bootstrap framework pretty quick.