Changeset 393f631 in mainline for arch/ppc/boot/Makefile
- Timestamp:
- 2005-08-31T21:51:04Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 33ccb2c
- Parents:
- 94f0ae4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc/boot/Makefile
r94f0ae4 r393f631 9 9 cp boot.bin ../../../src/load.bin 10 10 11 CC=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-gcc 11 12 AS=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-as 12 13 LD=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-ld 13 14 14 ASFLAGS= 15 LFLAGS=--oformat=binary -e start 15 CPPFLAGS=$(DEFS) -nostdinc -I../include 16 CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O2 17 LFLAGS=-no-check-sections -N -T _link.ld 16 18 17 boot.bin: boot.o 18 $(LD) $(LFLAGS) boot.o -o $@19 boot.bin: boot.o main.o 20 $(LD) $(LFLAGS) boot.o main.o -o $@ 19 21 20 boot.o: 21 $(AS) boot.s -o $@ 22 boot.o: boot.S 23 $(CC) $(CFLAGS) -c boot.S -o $@ 24 25 main.o: main.c 26 $(CC) $(CFLAGS) -c main.c -o $@ 22 27 23 28 clean:
Note:
See TracChangeset
for help on using the changeset viewer.