Changeset 849ba5cb in mainline for arch/ia32/boot/Makefile


Ignore:
Timestamp:
2005-11-07T20:44:50Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6bc4dbd
Parents:
c4e8ed9d
Message:

build system: boot target

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/boot/Makefile

    rc4e8ed9d r849ba5cb  
    1 .PHONY: nothing build clean
    2 
    3 nothing:
     1.PHONY: build clean
    42
    53build: boot.bin
    64        dd if=boot.bin of=../../../image.bin bs=512 conv=sync
    7         -cat ../../../kernel.bin >>../../../image.bin
     5        -cat ../../../kernel.bin >> ../../../image.bin
    86        dd if=/dev/zero of=../../../image.bin bs=1 seek=1474559 count=1
    97
     
    1210
    1311boot.o: boot.S
    14         gcc -E -DKERNEL_SIZE=$(KERNEL_SIZE) boot.S >boot.s
     12        gcc -E -DKERNEL_SIZE=$(KERNEL_SIZE) boot.S > boot.s
    1513        as boot.s -o $@
    1614        rm boot.s
    1715
    1816clean:
    19         -rm *.o *.bin
     17        -rm -f boot.o boot.bin ../../../image.bin
Note: See TracChangeset for help on using the changeset viewer.