使用者工具

網站工具


calculation_bios_build_time

差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

Both sides previous revision 前次修改
下次修改
前次修改
calculation_bios_build_time [2024/07/09 08:34]
don
calculation_bios_build_time [2024/09/11 12:36] (目前版本)
don
行 2: 行 2:
  
 makefile makefile
 +<code>
 +target: target1 target2 
 +<tab>gcc -o ExecutionFile target1 target2
 +</code>
 +
  
-Step1 : Add two variables+Step1 : Add two variables before .XXXXX   ex:.PHONY
 <code> <code>
 START_TIME := $(shell echo %time%) START_TIME := $(shell echo %time%)
行 9: 行 14:
 </code> </code>
  
-Step2 : Add two labels+Step2 : Add two targets
 <code> <code>
 start_time: start_time:
行 23: 行 28:
 </code> </code>
  
-Step3 : Add the label to start location and end location+Step3 : Add "start_time" "end_time" targets to ".PHONY"
 <code> <code>
-allstart_time Prologue $(BUILD_DIR) RunAmiSdl AptioV end_time+.PHONY all clean rebuild run RunAmiSdl AptioV sdl Prologue start_time end_time
 </code> </code>
  
 +Step4 : Add the target to start location and end location\\
 +
 +all: <color #ed1c24>start_time</color> Prologue $(BUILD_DIR) RunAmiSdl AptioV <color #ed1c24>end_time</color>
 +
 +
 +Completion makefile
  
 <code> <code>
行 55: 行 66:
 END_TIME := $(shell echo %time%) END_TIME := $(shell echo %time%)
  
-.PHONY : all clean rebuild run RunAmiSdl AptioV sdl Prologue+.PHONY : all clean rebuild run RunAmiSdl AptioV sdl Prologue start_time end_time
  
 all: start_time Prologue $(BUILD_DIR) RunAmiSdl AptioV end_time all: start_time Prologue $(BUILD_DIR) RunAmiSdl AptioV end_time
calculation_bios_build_time.1720485244.txt.gz · 上一次變更: 2024/07/09 08:34 由 don