Hacker News new | ask | show | jobs
by maskros 1286 days ago
Not all that uncommon, especially in ifdef situations:

  ifdef (something,something)
    rule:
          something specific recipe
  else
    rule:
          common recipe
  endif
It's also not just rules. Variable assignments are also separate from recipes, and can be indented with spaces.

  ifdef (something)
    CFLAGS=something
  else
    CFLAGS=otherthing
  endif
1 comments

OK, you've convinced me. MAKE is beyond redemption.