diff options
author | Christian Cunningham <cc@localhost> | 2022-04-11 21:19:47 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-11 21:19:47 -0700 |
commit | c85b36e9614e4d6192e54f1f935c6ac8ca7564ac (patch) | |
tree | 90b0c9afab60debc87eef92908e4fbbd5ea6e003 | |
parent | d127b4cb5e45958cd2a7fc972fc8fb7ed82b75f2 (diff) |
Fixed suffix to object file
-rw-r--r-- | build.bat | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ REM Assemble Assembly Kernel Source Files for /f %%i in ('forfiles /S /M *.S /P kernel\ /C "cmd /C echo @relpath"') do ( set src=kernel\%%~i set obj=!src! - set obj=!obj:.S=.So! + set obj=!obj:.S=.ao! set obj=obj\!obj! @set kobj=!kobj! !obj! @echo KERNEL AS !src! -- !obj! |