Makefile - relink, dependency
리링크 코드를 바꾸지 않은 상태에서 다시 make 했을 때, 변경사항이 없어서 타겟을 다시 만들지 않으면 리링크되지 않은 것. 보통 의존성이 있는 경우 리링크가 많이 발생함. A primary feature of make is that dependencies are specified in a makefile (often named makefile but may have other names such as MyRules.mk) in a form like: FileX: FileA FileB FileC Command to make FileX from FileA FileB FileC Given this dependency, if any of FileA, FileB, or FileC has a modificati..
42/others
2020. 10. 29. 17:58