- cross-posted to:
- programming@lemmy.ml
- cross-posted to:
- programming@lemmy.ml
When writing a (GNU) Makefile, there are times when you need a particular target(s) to be run before anything else. That can be for example to check the environment, ensure variables are set or prepare a particular directory layout.
… take advantage of GNU Make’s mechanism of
include
ing andmake
ing makefiles which is described in details in the manual:
You must log in or register to comment.