1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages.ko/common/gnatmake.md
HoJeong Im 9bd682fde6
gm*, gn*: add Korean translation (#14350)
gm*, gn: add Korean translation
2024-10-29 22:49:08 -07:00

16 lines
454 B
Markdown

# gnatmake
> Ada 프로그램용 저수준 빌드 도구 (GNAT 도구 체인의 일부).
> 더 많은 정보: <https://gcc.gnu.org/onlinedocs/gnat_ugn/Building-with-gnatmake.html>.
- 실행 파일을 컴파일:
`gnatmake {{소스_파일1.adb 소스_파일2.adb ...}}`
- 사용자 정의 실행 파일 이름을 설정:
`gnatmake -o {{실행파일_이름}} {{소스_파일.adb}}`
- 강제([f]orce) 재컴파일:
`gnatmake -f {{소스_파일.adb}}`