Changeset 74 for trunk/bootcode/Makefile


Ignore:
Timestamp:
Apr 8, 2017, 12:26:09 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Use CRLF line endings for these when building on Linux [v1.1.1-testing]

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/Makefile

    r68 r74  
    302302# Note that this target is not used as a 'dependency' but 'called' explicitly
    303303# by the $(BLD_LANGUAGES) target.
     304!ifdef __LINUX__
     305        @echo -e "include text/$(%BLD_LANG)/mbr.asm\r">   text$(DS)txtmbr.asm
     306        @echo -e "include text/$(%BLD_LANG)/menus.asm\r"> text$(DS)txtmenus.asm
     307        @echo -e "include text/$(%BLD_LANG)/other.asm\r"> text$(DS)txtother.asm
     308!else
    304309        @echo include text/$(%BLD_LANG)/mbr.asm>   text$(DS)txtmbr.asm
    305310        @echo include text/$(%BLD_LANG)/menus.asm> text$(DS)txtmenus.asm
    306311        @echo include text/$(%BLD_LANG)/other.asm> text$(DS)txtother.asm
     312!endif
    307313
    308314
Note: See TracChangeset for help on using the changeset viewer.