Makefile 작성 - 기본 rule


Makefile 작성 - 기본 rule

프로그램 작성 시 파일이 많아지면 command로 컴파일 하기가 어려워진다. 간단한 Makefile을 사고 성하여 컴파일을 쉽게 할 수 있도록 하자. 먼저 Makefile 파일의 가장 간단한 형태를 정의를 알고 가자. GNU make에 대한 내용이 정리되어 있는 곳이니 참조하자. Rule Syntax (GNU make) Next: Types of Prerequisites , Previous: Rule Example , Up: Writing Rules [ Contents ][ Index ] 4.2 Rule Syntax In general, a rule looks like this: targets : prerequisites recipe … or like this: targets : prerequisites ; recipe recipe … The targets are file names, separated by spaces. Wildcard ch... www.gnu.org targets...


#make #makefile #rule #syntax

원문링크 : Makefile 작성 - 기본 rule