- 避免文件名稱相同衝突
- Makefile
- 當資料夾下已經有 test檔案,在執行make test,則會發生
- add .PHONY tag to Makefile
- 加速make速度,以平行化處理
test:
gcc test.c -o test
gcc test.c -o test
make: `test' is up to date
.PHONY: test
test:
gcc test.c -o test
test:
gcc test.c -o test
Reference:
[1] 跟我一起寫Makefile:書寫規則
[2] Makefile Built-in Targets: .PHONY
沒有留言:
張貼留言