2025-03-14 21:59:59 -06:00
|
|
|
# gnatmake
|
|
|
|
|
|
|
|
|
|
> A low-level build tool for Ada programs (part of the GNAT toolchain).
|
2025-04-03 20:36:56 -06:00
|
|
|
> More information: <https://gcc.gnu.org/onlinedocs/gnat_ugn/Switches-for-gnatmake.html>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compile an executable:
|
|
|
|
|
|
|
|
|
|
`gnatmake {{source_file1.adb source_file2.adb ...}}`
|
|
|
|
|
|
|
|
|
|
- Set a custom executable name:
|
|
|
|
|
|
|
|
|
|
`gnatmake -o {{executable_name}} {{source_file.adb}}`
|
|
|
|
|
|
|
|
|
|
- [f]orce recompilation:
|
|
|
|
|
|
|
|
|
|
`gnatmake -f {{source_file.adb}}`
|