IMHO the issue is two folds:
- The makefile were never supposed to do more than determine which build tools to call for a given target. Meaning that in very many cases, makefile are abused to do way too much. I’d argue that you should try to keep your make targets only one line long. Anything bigger and you’re likely doing it wrong.
- It is really challenging to write portable makefiles. There’s BSD make and GNU make, and then there are different tools on different systems. Different dependencies. Different libs. Etc. Not easy.
PsychedSy@lemmy.dbzer0.com 7 months ago
Perl? I had fun compiling perl from source back in the day.