Changeset 41f7564 in mainline for boot/arch/ppc64/Makefile.inc


Ignore:
Timestamp:
2006-07-17T00:53:53Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
231fcb2
Parents:
41c4444
Message:

cleanup and unify the build system

File:
1 edited

Legend:

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

    r41c4444 r41f7564  
    2727#
    2828
    29 build: image.boot
     29build: $(BASE)/image.boot
    3030
    31 image.boot: kernel uspace
     31$(BASE)/image.boot: depend arch/$(ARCH)/loader/image.boot
     32        cp arch/$(ARCH)/loader/image.boot $(BASE)/image.boot
     33
     34depend:
     35        -rm arch/$(ARCH)/loader/image.boot
     36
     37arch/$(ARCH)/loader/image.boot:
    3238        make -C arch/$(ARCH)/loader COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR)
    33         cp arch/$(ARCH)/loader/image.boot image.boot
    3439
    35 clean: clean_boot_gen clean_kernel clean_uspace
    36         make -C arch/$(ARCH)/loader clean KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR)
    37         -rm -f image.boot
    38 
    39 arch_distclean: distclean_kernel distclean_uspace
     40clean: generic_clean
     41        make -C arch/$(ARCH)/loader clean COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR)
     42        -rm -f $(BASE)/image.boot
Note: See TracChangeset for help on using the changeset viewer.