u24c02
Advanced Member level 1
- Joined
- May 8, 2012
- Messages
- 404
- Helped
- 2
- Reputation
- 4
- Reaction score
- 2
- Trophy points
- 1,298
- Activity points
- 4,101
Hi.
I trying to study Makefile. But I have some questions.
1. What is the .PHONY 's function?
2. When I run 'simz', Which lines are executed?
3. clean: * you can see the "subdirs_clean", What is having a meaning? And What is having a purpose?
.PHONY: all clean simz
all:
@echo "[all] : OK."
simz:
*- /bin/rm -rf app
**$(/simz/BUILD/run)
clean: * subdirs_clean
- /bin/rm -f Makefile.depend
veryclean : subdirs_verycle
gethash :
*Xxxxxxxxxx
I trying to study Makefile. But I have some questions.
1. What is the .PHONY 's function?
2. When I run 'simz', Which lines are executed?
3. clean: * you can see the "subdirs_clean", What is having a meaning? And What is having a purpose?
.PHONY: all clean simz
all:
@echo "[all] : OK."
simz:
*- /bin/rm -rf app
**$(/simz/BUILD/run)
clean: * subdirs_clean
- /bin/rm -f Makefile.depend
veryclean : subdirs_verycle
gethash :
*Xxxxxxxxxx