lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
|
Last change
on this file since 04b1b8a was 04b1b8a, checked in by Martin Decky <martin@…>, 21 years ago |
|
PPC work in progress
|
-
Property mode
set to
100644
|
|
File size:
337 bytes
|
| Line | |
|---|
| 1 | .PHONY: nothing build
|
|---|
| 2 |
|
|---|
| 3 | nothing:
|
|---|
| 4 |
|
|---|
| 5 | build: boot.bin
|
|---|
| 6 | cp boot.bin ../../../src/load.bin
|
|---|
| 7 |
|
|---|
| 8 | AS=/usr/local/mips/bin/decstation-ultrix-as
|
|---|
| 9 | LD=/usr/local/mips/bin/decstation-ultrix-ld
|
|---|
| 10 |
|
|---|
| 11 | ASFLAGS=-mips2 -EL
|
|---|
| 12 | LFLAGS=--oformat=binary -mips2 -EL -e start
|
|---|
| 13 |
|
|---|
| 14 | boot.bin: boot.o
|
|---|
| 15 | $(LD) $(LFLAGS) boot.o -o $@
|
|---|
| 16 |
|
|---|
| 17 | boot.o:
|
|---|
| 18 | $(AS) boot.s -o $@
|
|---|
| 19 |
|
|---|
| 20 | clean:
|
|---|
| 21 | -rm *.o *.bin
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.