source: mainline/arch/powerpc/boot/Makefile@ a1a03f9

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a1a03f9 was f761f1eb, checked in by Jakub Jermar <jakub@…>, 21 years ago

Initial import

  • Property mode set to 100644
File size: 337 bytes
Line 
1.PHONY: nothing build
2
3nothing:
4
5build: boot.bin
6 cp boot.bin ../../../src/load.bin
7
8AS=/usr/local/mips/bin/decstation-ultrix-as
9LD=/usr/local/mips/bin/decstation-ultrix-ld
10
11ASFLAGS=-mips2 -EL
12LFLAGS=--oformat=binary -mips2 -EL -e start
13
14boot.bin: boot.o
15 $(LD) $(LFLAGS) boot.o -o $@
16
17boot.o:
18 $(AS) boot.s -o $@
19
20clean:
21 -rm *.o *.bin
Note: See TracBrowser for help on using the repository browser.