]> Git Repo - qemu.git/blame - pc-bios/Makefile
disable PCI device for PMAC
[qemu.git] / pc-bios / Makefile
CommitLineData
a735aa31
FB
1#
2# NOTE: only compilable with x86 cross compile tools
3#
4include ../config-host.mak
5
6DEFINES=
7
8TARGETS=
9ifeq ($(ARCH),i386)
10TARGETS+=linux_boot.bin
11endif
12
13all: $(TARGETS)
14
15linux_boot.bin: linux_boot.o
16 ld --oformat binary -Ttext 0 -o $@ $<
17 chmod a-x $@
18
19%.o: %.S
20 $(CC) $(DEFINES) -c -o $@ $<
21
22clean:
23 rm -f $(TARGETS) *.o *~
24
This page took 0.030688 seconds and 4 git commands to generate.