Changeset 56
- Timestamp:
- Feb 18, 2016, 5:01:47 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AiR-BOOT.TXT
r55 r56 1 ============================== 1 ------------------------------------------------------------------------------- 2 AiR-BOOT-v1.1.1-testing feb 2016 3 ------------------------------------------------------------------------------- 4 5 This v1.1.1-testing cycle will be relatively short with the main purpose of 6 integrating some patches and fixes from the local dev-queue. After things look 7 good enough a v1.1.2-RELEASE will be done. 8 9 Once on v1.1.3-testing, the plan is to also integrate the building of the INF 10 and PDF documentation into this project. That part will require LFNs, but the 11 building of core AiR-BOOT files, like the installers and of course the 12 bootloader itself will remain doable on 8.3 FAT systems. 13 14 15 16 17 18 =============================================================================== 2 19 AiR-BOOT version 1.1.0-RELEASE apr 2013 3 ============================== 20 =============================================================================== 4 21 5 22 This is the version as included on the eCS v2.2-beta CD's. -
trunk/Makefile
r55 r56 112 112 @%MAKE dist 113 113 @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. 114 123 @echo :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 115 124 @echo :: !! Success !! :: … … 228 237 @cd 229 238 @$(MAKE) -h clean 230 @if exist Makefile.bu delMakefile.bu239 @if exist Makefile.bu $(RM) Makefile.bu 231 240 !else 232 241 @echo. -
trunk/RELEASE/Makefile
r55 r56 2 2 # Quick and Dirty clean of release directories 3 3 # 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 4 8 5 9 default: .SYMBOLIC … … 15 19 @cd BOOTCODE 16 20 @cd 17 @if exist *.BIN del*.BIN18 @if exist *.EXE del*.EXE19 @if exist *.ELF del*.ELF21 @if exist *.BIN $(RM) *.BIN 22 @if exist *.EXE $(RM) *.EXE 23 @if exist *.ELF $(RM) *.ELF 20 24 @cd .. 21 25 @cd DOS 22 26 @cd 23 @if exist *.BIN del*.BIN24 @if exist *.EXE del*.EXE25 @if exist *.ELF del*.ELF27 @if exist *.BIN $(RM) *.BIN 28 @if exist *.EXE $(RM) *.EXE 29 @if exist *.ELF $(RM) *.ELF 26 30 @cd .. 27 31 @cd LINUX 28 32 @cd 29 @if exist *.BIN del*.BIN30 @if exist *.EXE del*.EXE31 @if exist *.ELF del*.ELF33 @if exist *.BIN $(RM) *.BIN 34 @if exist *.EXE $(RM) *.EXE 35 @if exist *.ELF $(RM) *.ELF 32 36 @cd .. 33 37 @cd OS2 34 38 @cd 35 @if exist *.BIN del*.BIN36 @if exist *.EXE del*.EXE37 @if exist *.ELF del*.ELF39 @if exist *.BIN $(RM) *.BIN 40 @if exist *.EXE $(RM) *.EXE 41 @if exist *.ELF $(RM) *.ELF 38 42 @cd .. 39 43 @cd WINNT 40 44 @cd 41 @if exist *.BIN del*.BIN42 @if exist *.EXE del*.EXE43 @if exist *.ELF del*.ELF45 @if exist *.BIN $(RM) *.BIN 46 @if exist *.EXE $(RM) *.EXE 47 @if exist *.ELF $(RM) *.ELF 44 48 @cd ..
Note:
See TracChangeset
for help on using the changeset viewer.