-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Marko Korhonen edited this page Jun 18, 2021
·
12 revisions
Tools is mainly for development (host and Docker) use but as make
is quite commonly available command, it can be used in other environments too.
- make is standard way in Linux to build/compile stuff
- make is widely available
- it's quite simple but allowing some logic (variables, if/else, prerequisites)
- target = command or actual file/folder target in makefile. E.g.
make fresh
< fresh is target. Ormake path/to/folder
- phony = target which is not file or folder
You can always check what some target is about to do with -n
flag: make fresh -n