GNU Make - Unconditionally run a target before any other targets
GNU Make - Unconditionally run a target before any other targets
www.bahmanm.com GNU Make - Unconditionally run a target before any other targets
When writing a (GNU) Makefile, there are times when you need a particular target(s) to be run before anything else.
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:
0 comments