Changeset 224dad8 in mainline for arch/ia32/Makefile


Ignore:
Timestamp:
2005-12-18T22:07:41Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
989bad7
Parents:
856b5e70
Message:

Let the kernel Makefile decide wether rebuild is required.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/Makefile

    r856b5e70 r224dad8  
    1 .PHONY=build clean
     1.PHONY=build kernel uspace clean
    22
    33ROOT=distroot
     
    66USPACEDIR=$(BASE)/uspace
    77
    8 build: $(KERNELDIR)/kernel.bin $(USPACEDIR)/init/init
     8build: kernel uspace
    99        gunzip -c grub/grub.img.gz > image.bin
    1010        e2cp $(KERNELDIR)/kernel.bin image.bin:/boot/kernel.bin
     
    1212        e2cp grub/README grub/COPYING image.bin:/boot
    1313
    14 $(KERNELDIR)/kernel.bin:
     14kernel:
    1515        $(MAKE) -C $(KERNELDIR)
    1616
    17 $(USPACEDIR)/init/init:
     17uspace:
    1818        $(MAKE) -C $(USPACEDIR)
    1919
Note: See TracChangeset for help on using the changeset viewer.