Changeset 56


Ignore:
Timestamp:
Feb 18, 2016, 5:01:47 PM (9 years ago)
Author:
Ben Rietbroek
Message:

AiR-BOOT v1.1.1-TESTING !! MASSIVE LOWERCASING UPCOMING !! [opening]

!! Be sure to have a clean workdir before running 'svn update' !!

The DOS era has well passed and the UPPERCASE source-file names are
really starting hurt my eyes. Besides that, AiR-BOOT can also be built
under Linux, where the file-systems are mostly case-sensitive with
lowercase being the standard. So it's time to grab these sources and
hammer their case down, which is what will happen in the next commit.

Besides this lowercasing, some obsolete stuff will also be removed.

This v1.1.1-testing cycle will be relatively short with the main purpose
of integrating some patches and fixes from the local dev-queue. After
things look good enough a v1.1.2-RELEASE will be done.

Once on v1.1.3-testing, the plan is to also integrate the building of
the INF and PDF documentation into this project. That part will require
LFNs, but the building of core AiR-BOOT files, like the installers and
of course the bootloader itself will remain doable on 8.3 FAT systems.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/AiR-BOOT.TXT

    r55 r56  
    1 ==============================
     1-------------------------------------------------------------------------------
     2AiR-BOOT-v1.1.1-testing                                                feb 2016
     3-------------------------------------------------------------------------------
     4
     5This v1.1.1-testing cycle will be relatively short with the main purpose of
     6integrating some patches and fixes from the local dev-queue. After things look
     7good enough a v1.1.2-RELEASE will be done.
     8
     9Once on v1.1.3-testing, the plan is to also integrate the building of the INF
     10and PDF documentation into this project. That part will require LFNs, but the
     11building of core AiR-BOOT files, like the installers and of course the
     12bootloader itself will remain doable on 8.3 FAT systems.
     13
     14
     15
     16
     17
     18===============================================================================
    219AiR-BOOT version 1.1.0-RELEASE                                         apr 2013
    3 ==============================
     20===============================================================================
    421
    522This is the version as included on the eCS v2.2-beta CD's.
  • trunk/Makefile

    r55 r56  
    112112        @%MAKE dist
    113113        @echo.
     114
     115        @echo Cleaning up bootcode directory
     116        @cd BOOTCODE
     117        @wmake -h clean
     118        @cd ..
     119        @echo Done.
     120
     121        @echo.
     122        @echo.
    114123        @echo ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    115124        @echo :: !! Success !!                                                  ::
     
    228237        @cd
    229238        @$(MAKE) -h clean
    230         @if exist Makefile.bu del Makefile.bu
     239        @if exist Makefile.bu $(RM) Makefile.bu
    231240!else
    232241        @echo.
  • trunk/RELEASE/Makefile

    r55 r56  
    22# Quick and Dirty clean of release directories
    33#
     4
     5# Include a Master Makefile with several cross-platform definitions and macros.
     6# This is used to compensate for the differences between the target platforms.
     7!include        ../INCLUDE/MAKEFILE.MIF
    48
    59default:        .SYMBOLIC
     
    1519        @cd BOOTCODE
    1620        @cd
    17         @if exist *.BIN del *.BIN
    18         @if exist *.EXE del *.EXE
    19         @if exist *.ELF del *.ELF
     21        @if exist *.BIN $(RM) *.BIN
     22        @if exist *.EXE $(RM) *.EXE
     23        @if exist *.ELF $(RM) *.ELF
    2024        @cd ..
    2125        @cd DOS
    2226        @cd
    23         @if exist *.BIN del *.BIN
    24         @if exist *.EXE del *.EXE
    25         @if exist *.ELF del *.ELF
     27        @if exist *.BIN $(RM) *.BIN
     28        @if exist *.EXE $(RM) *.EXE
     29        @if exist *.ELF $(RM) *.ELF
    2630        @cd ..
    2731        @cd LINUX
    2832        @cd
    29         @if exist *.BIN del *.BIN
    30         @if exist *.EXE del *.EXE
    31         @if exist *.ELF del *.ELF
     33        @if exist *.BIN $(RM) *.BIN
     34        @if exist *.EXE $(RM) *.EXE
     35        @if exist *.ELF $(RM) *.ELF
    3236        @cd ..
    3337        @cd OS2
    3438        @cd
    35         @if exist *.BIN del *.BIN
    36         @if exist *.EXE del *.EXE
    37         @if exist *.ELF del *.ELF
     39        @if exist *.BIN $(RM) *.BIN
     40        @if exist *.EXE $(RM) *.EXE
     41        @if exist *.ELF $(RM) *.ELF
    3842        @cd ..
    3943        @cd WINNT
    4044        @cd
    41         @if exist *.BIN del *.BIN
    42         @if exist *.EXE del *.EXE
    43         @if exist *.ELF del *.ELF
     45        @if exist *.BIN $(RM) *.BIN
     46        @if exist *.EXE $(RM) *.EXE
     47        @if exist *.ELF $(RM) *.ELF
    4448        @cd ..
Note: See TracChangeset for help on using the changeset viewer.