Changeset 187


Ignore:
Timestamp:
Nov 7, 2017, 7:12:54 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Updated the simple build commands [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

Location:
trunk
Files:
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/.build

    r46 r187  
    11#!/bin/bash
    22
    3 #export ASM=jwasm
    43make
    5 
  • trunk/.clean

    r46 r187  
    22
    33make clean
    4 
  • trunk/_build.cmd

    r55 r187  
    11@wmake -h
    2 
  • trunk/air-boot.gmk

    r183 r187  
    2929        $(info )
    3030        $(info [$@])
     31        @echo
    3132        @echo "### Master AiR-BOOT Makefile ###"
    3233        @echo "Use make build to build AiR-BOOT for all languages."
  • trunk/bootcode/.build

    r47 r187  
    11#!/bin/bash
    22
    3 export ASM=jwasm
    4 make dev
    5 make dist
     3make dev DEV_BLD_LANG=en BLDLVL_VENDOR= BLDLVL_MACHINE= USE_GNU_MAKE=y CRC_IGNORE=y
  • trunk/bootcode/.clean

    r37 r187  
    11#!/bin/bash
    22
    3 make clean rmbin
     3make clean USE_GNU_MAKE=y
  • trunk/bootcode/_build.cmd

    r55 r187  
    1 @SET ASM=jwasm
    2 @wmake -h dev
    3 @wmake -h dist
     1@wmake -h dev DEV_BLD_LANG=en %%BLDLVL_VENDOR= %%BLDLVL_MACHINE= %%CRC_IGNORE=y
  • trunk/bootcode/_clean.cmd

    r55 r187  
    1 @wmake -h clean
     1@wmake -h clean rmbin
  • trunk/bootcode/airboot.gmk

    r183 r187  
    1616
    1717# Inform the user on how to build AiR-BOOT
    18 default: info
     18default: build
    1919
    2020# Show information on how to use this Makefile
     
    2222        $(info )
    2323        $(info [$@])
    24         @echo "### Master AiR-BOOT Makefile ###"
    25         @echo "Use make build to build AiR-BOOT for all languages."
    26         @echo
    2724
    2825# Redirect to 'build' target
     
    3128# Build AiR-BOOT and its components
    3229build: dev
    33 #~      $(info )
    34 #~      $(info [$@])
    35 #~      $(call owc.env)
    36 #~      wmake -h
    3730
    3831# Cleanup the generated files
     
    4134        $(info [$@])
    4235        $(call owc.env)
    43         wmake -h clean
     36        wmake -h clean rmbin
    4437
    4538# Build AiR-BOOT development version
     
    4841        $(info [$@])
    4942        $(call owc.env)
    50         @echo "VV:$(__VENDOR_BUILD__)"
    5143        wmake -h dev DEV_BLD_LANG=$(DEV_BLD_LANG)
    5244
Note: See TracChangeset for help on using the changeset viewer.