Changeset 60 for trunk/release


Ignore:
Timestamp:
Feb 18, 2016, 5:18:51 PM (10 years ago)
Author:
Ben Rietbroek
Message:

Fixed building on Linux [v1.1.1-testing]

Of course the lowercasing broke building on Linux.
This commit fixes that.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/release/Makefile

    r56 r60  
    55# Include a Master Makefile with several cross-platform definitions and macros.
    66# This is used to compensate for the differences between the target platforms.
    7 !include        ../INCLUDE/MAKEFILE.MIF
     7!include        ../include/makefile.mif
    88
    99default:        .SYMBOLIC
     
    1717        @echo @@ CLEANING RELEASE DIRECTORIES
    1818        @echo @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    19         @cd BOOTCODE
     19        @cd bootcode
    2020        @cd
    21         @if exist *.BIN $(RM) *.BIN
    22         @if exist *.EXE $(RM) *.EXE
    23         @if exist *.ELF $(RM) *.ELF
     21        @if exist *.bin $(RM) *.bin
     22        @if exist *.exe $(RM) *.exe
     23        @if exist *.elf $(RM) *.elf
    2424        @cd ..
    25         @cd DOS
     25        @cd dos
    2626        @cd
    27         @if exist *.BIN $(RM) *.BIN
    28         @if exist *.EXE $(RM) *.EXE
    29         @if exist *.ELF $(RM) *.ELF
     27        @if exist *.bin $(RM) *.bin
     28        @if exist *.exe $(RM) *.exe
     29        @if exist *.elf $(RM) *.elf
    3030        @cd ..
    31         @cd LINUX
     31        @cd linux
    3232        @cd
    33         @if exist *.BIN $(RM) *.BIN
    34         @if exist *.EXE $(RM) *.EXE
    35         @if exist *.ELF $(RM) *.ELF
     33        @if exist *.bin $(RM) *.bin
     34        @if exist *.exe $(RM) *.exe
     35        @if exist *.elf $(RM) *.elf
    3636        @cd ..
    37         @cd OS2
     37        @cd os2
    3838        @cd
    39         @if exist *.BIN $(RM) *.BIN
    40         @if exist *.EXE $(RM) *.EXE
    41         @if exist *.ELF $(RM) *.ELF
     39        @if exist *.bin $(RM) *.bin
     40        @if exist *.exe $(RM) *.exe
     41        @if exist *.elf $(RM) *.elf
    4242        @cd ..
    43         @cd WINNT
     43        @cd winnt
    4444        @cd
    45         @if exist *.BIN $(RM) *.BIN
    46         @if exist *.EXE $(RM) *.EXE
    47         @if exist *.ELF $(RM) *.ELF
     45        @if exist *.bin $(RM) *.bin
     46        @if exist *.exe $(RM) *.exe
     47        @if exist *.elf $(RM) *.elf
    4848        @cd ..
Note: See TracChangeset for help on using the changeset viewer.