programming:make:fake_target
Differences
This shows you the differences between two versions of the page.
programming:make:fake_target [2021/02/04 16:40] – created peter | programming:make:fake_target [2021/02/04 16:56] (current) – peter | ||
---|---|---|---|
Line 3: | Line 3: | ||
By default, make __only__ tries to build the first thing it finds. | By default, make __only__ tries to build the first thing it finds. | ||
- | Sometimes you’ll see a fake target | + | <file bash Makefile> |
+ | hello: hello.c | ||
+ | </ | ||
+ | |||
+ | <WRAP infp> | ||
+ | **NOTE: | ||
+ | |||
+ | * **hello**: | ||
+ | * **hello.c**. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ====== Fake Target ====== | ||
+ | |||
+ | A fake target | ||
<file bash Makefile> | <file bash Makefile> | ||
Line 10: | Line 26: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
+ | |||
+ | This actually works as long as there is never a file named **all** in the working directory. | ||
- | This works as long as you never have a file name **all** | + | This assumes that there are other rules elsewhere |
</ | </ | ||
Line 20: | Line 38: | ||
====== Prevent problems using all ====== | ====== Prevent problems using all ====== | ||
- | To prevent | + | To prevent |
<file bash Makefile> | <file bash Makefile> | ||
Line 31: | Line 49: | ||
.PHONY: clean | .PHONY: clean | ||
clean: | clean: | ||
- | rm *.o | + | |
</ | </ | ||
programming/make/fake_target.1612456848.txt.gz · Last modified: 2021/02/04 16:40 by peter