source: mainline/arch/mips32/boot/Makefile@ 9b9f195

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9b9f195 was 389f41e, checked in by Martin Decky <martin@…>, 20 years ago

new build system almost finished

  • Property mode set to 100644
File size: 360 bytes
RevLine 
[389f41e]1.PHONY: build clean
[f761f1eb]2
[389f41e]3CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -mips3 -I../include
[f761f1eb]4
5build: boot.bin
[c9ed176]6 cp boot.bin ../../../load.bin
[f761f1eb]7
8boot.bin: boot.o
[389f41e]9 $(LD) -e start -T _link.ld boot.o -o $@
[f761f1eb]10
[389f41e]11boot.o: boot.S
12 $(CC) $(CFLAGS) -c boot.S -o $@
[f761f1eb]13
14clean:
[389f41e]15 -rm -f boot.o boot.bin ../../../load.bin
Note: See TracBrowser for help on using the repository browser.