Email or username:

Password:

Forgot your password?
Devil Lu Linvega

There's a certain Prolog je-ne-sais-quoi to makefiles

8 comments
cancel

@neauoire looking forward to the part where you go back to not using makefiles, like I did years ago

cancel

@neauoire yes. i'll let you learn it on your own this time. it's more subtle and complicated than most other things i discourage. but it's an important skill to learn how make/makefiles work, so that you can interact with other people's stuff more confidently, and for having context when someone presents a makefiles challenger to you.

Devil Lu Linvega

@cancel I respect that, I'm glad you're letting me do my own exploration of it. Being able to read makefiles is already a big plus for me right now, even if someday I stop using them myself.

Rob Landley

@neauoire The thing that annoys me about them is it mixes imperative and declarative code in the same context. Especially with assigning values to variables. You need to control what order things happen in, and can't.

Go Up