[ARM] 3550/1: OSIRIS: fix serial port map for 1:1
[linux-2.6/openmoko-kernel/knife-kernel.git] / arch / cris / arch-v32 / boot / rescue / Makefile
blobf668a819872408c03d04de55c00790e2e8ac5f57
2 # Makefile for rescue code
4 target = $(target_rescue_dir)
5 src = $(src_rescue_dir)
7 CC = gcc-cris -mlinux -march=v32 $(LINUXINCLUDE)
8 CFLAGS = -O2
9 LD = gcc-cris -mlinux -march=v32 -nostdlib
10 OBJCOPY = objcopy-cris
11 OBJCOPYFLAGS = -O binary --remove-section=.bss
13 all: $(target)/rescue.bin
15 rescue: rescue.bin
16 # do nothing
18 $(target)/rescue.bin: $(target) $(target)/head.o
19 $(LD) -T $(src)/rescue.ld -o $(target)/rescue.o $(target)/head.o
20 $(OBJCOPY) $(OBJCOPYFLAGS) $(target)/rescue.o $(target)/rescue.bin
21 cp -p $(target)/rescue.bin $(objtree)
23 $(target):
24 mkdir -p $(target)
26 $(target)/head.o: $(src)/head.S
27 $(CC) -D__ASSEMBLY__ -c $< -o $*.o
29 clean:
30 rm -f $(target)/*.o $(target)/*.bin
32 fastdep:
34 modules:
36 modules-install: