Changeset 208


Ignore:
Timestamp:
Nov 7, 2017, 7:13:25 AM (7 years ago)
Author:
Ben Rietbroek
Message:

Building a bin-package builds the manual as dependency [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
  • TabularUnified trunk/Makefile

    r199 r208  
    194194# CREATE SOURCE PACKAGE (ZIP)
    195195# -----------------------------------------------------------------------------
    196 package.src: .SYMBOLIC clean
     196package.src: .SYMBOLIC clean manual.clean
    197197!ifdef  __LINUX__
    198198        @echo
     
    215215        @if exist $(%ABV)*.zip del $(%ABV)*.zip 1>nul
    216216        @if exist $(%RDATE)-tmp.zip del $(%RDATE)-tmp.zip 1>nul
    217         @zip -q -r $(%RDATE)-tmp.zip . -x .git -x .index.local
     217        @zip -q -r $(%RDATE)-tmp.zip . -x .git -x .index.local -x *.bu
    218218        @md $(%PACKDIR)
    219219        @move $(%RDATE)-tmp.zip $(%PACKDIR) 1>nul
     
    235235# CREATE BINARY PACKAGE (ZIP)
    236236# -----------------------------------------------------------------------------
    237 package.bin: .SYMBOLIC
     237package.bin: .SYMBOLIC manual
    238238!ifdef  __LINUX__
    239239        @echo
     
    248248        @%MAKE build
    249249
     250        @xcopy /s $(%RELDIR)\dos $(%PACKDIR)\install\dos\
     251        @if exist $(%PACKDIR)\install\dos\.gitignore del $(%PACKDIR)\install\dos\.gitignore
     252        @-touch -c -t $(%RDATE) $(%PACKDIR)\install\dos\*
     253
    250254        @echo.
    251255        @echo *** Copying DOS Release Files ***
     
    279283        @if exist $(%PACKDIR)\loaders\.gitignore del $(%PACKDIR)\loaders\.gitignore
    280284        @-touch -c -t $(%RDATE) $(%PACKDIR)\loaders\*
     285
     286        @echo.
     287        @echo *** Copying User Manual ***
     288        @md $(%PACKDIR)\manual
     289        @copy manual\airboot-manual.inf $(%PACKDIR)\manual
     290        @copy manual\airboot-manual.pdf $(%PACKDIR)\manual
     291        @-touch -c -t $(%RDATE) $(%PACKDIR)\manual\*
    281292
    282293        @%MAKE os2.install.cmd
     
    420431
    421432
     433# -----------------------------------------------------------------------------
     434# CREATE THE AiR-BOOT MANUAL
     435# -----------------------------------------------------------------------------
     436# This creates the INF-version from the ODT-document.
     437# The PDF-version needs to be manually exported from the ODT-document.
     438# -----------------------------------------------------------------------------
     439manual: .SYMBOLIC
     440        @echo.
     441        @echo @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
     442        @echo @@ Creating Manual
     443        @echo @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
     444        @cd manual
     445        @$(MAKE) -h rebuild
     446        @cd ..
     447
     448# -----------------------------------------------------------------------------
     449# CLEAN THE AiR-BOOT MANUAL
     450# -----------------------------------------------------------------------------
     451# This removes the generated files for the manual.
     452# This target is used by the target that creates the source package to prevent
     453# inclusion of spurious files.
     454# -----------------------------------------------------------------------------
     455manual.clean: .SYMBOLIC
     456        @echo.
     457        @echo @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
     458        @echo @@ Cleaning Manual
     459        @echo @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
     460        @cd manual
     461        @$(MAKE) -h clean
     462        @cd ..
    422463
    423464# -----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.