Changeset cc1f8d4 in mainline for boot/arch/ia64/Makefile.inc


Ignore:
Timestamp:
2009-10-20T16:08:08Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50989793
Parents:
00413c5c
Message:

proper support for parallel building (this time really tested)
all ports except sparc64 (which should follow soon)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ia64/Makefile.inc

    r00413c5c rcc1f8d4  
    2929build: $(BASE)/image.boot
    3030
    31 $(BASE)/image.boot: depend arch/$(BARCH)/loader/image.boot
    32         cp arch/$(BARCH)/loader/image.boot $(BASE)/image.boot
     31$(BASE)/image.boot:
     32        $(MAKE) -C arch/$(BARCH)/loader
     33        cp arch/$(BARCH)/loader/image.boot $@
    3334
    34 depend:
    35         -rm arch/$(BARCH)/loader/image.boot
    36 
    37 arch/$(BARCH)/loader/image.boot:
    38         make -C arch/$(BARCH)/loader COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR)
    39 
    40 clean: generic_clean
    41         make -C arch/$(BARCH)/loader clean COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR)
    42         -rm -f $(BASE)/image.boot
     35clean:
     36        $(MAKE) -C arch/$(BARCH)/loader clean
     37        rm -f $(BASE)/image.boot $(BASE)/hello.efi $(BASE)/image.bin
Note: See TracChangeset for help on using the changeset viewer.