~ahs3/+junk/cq-qemu

« back to all changes in this revision

Viewing changes to pc-bios/Makefile

  • Committer: Al Stone
  • Date: 2012-02-09 01:17:20 UTC
  • Revision ID: albert.stone@canonical.com-20120209011720-tztl7ik3qayz80p4
first commit to bzr for qemu

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# NOTE: only compilable with x86 cross compile tools
 
3
#
 
4
include ../config-host.mak
 
5
 
 
6
DEFINES=
 
7
 
 
8
TARGETS=
 
9
 
 
10
all: $(TARGETS)
 
11
 
 
12
%.o: %.S
 
13
        $(CC) $(DEFINES) -c -o $@ $<
 
14
 
 
15
%.dtb: %.dts
 
16
        dtc -I dts -O dtb -o $@ $<
 
17
 
 
18
clean:
 
19
        rm -f $(TARGETS) *.o *~