PL050 status register fixes.
[qemu/mini2440.git] / pc-bios / Makefile
blob7ae0ff02a041f4460f37b29bf617dd5f1b0d4474
2 # NOTE: only compilable with x86 cross compile tools
4 include ../config-host.mak
6 DEFINES=
8 TARGETS=
9 ifeq ($(ARCH),i386)
10 TARGETS+=linux_boot.bin
11 endif
13 all: $(TARGETS)
15 linux_boot.bin: linux_boot.o
16 ld --oformat binary -Ttext 0 -o $@ $<
17 chmod a-x $@
19 %.o: %.S
20 $(CC) $(DEFINES) -c -o $@ $<
22 clean:
23 rm -f $(TARGETS) *.o *~