~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/openbios/config/xml/rules.xml

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<rules>
 
2
 <!-- host compiler build rules -->
 
3
<rule target="host" entity="executable">
 
4
        $(call quiet-command,$(HOSTCC) $(HOSTCFLAGS) -o $@ $^," HOSTCC $(TARGET_DIR)$@")
 
5
</rule>
 
6
<rule target="host" entity="object">
 
7
        $(call quiet-command,$(HOSTCC) $(HOSTCFLAGS) $(HOSTINCLUDES) -c -o $@ $&lt;," HOSTCC $(TARGET_DIR)$@")
 
8
</rule>
 
9
<rule target="host" entity="object" extracflags="1">
 
10
        $(call quiet-command,$(HOSTCC) $(HOSTCFLAGS) $(HOSTINCLUDES)</rule>
 
11
<rule target="host" entity="object" extracflags="2"> -c -o $@ $&lt;," HOSTCC $(TARGET_DIR)$@")
 
12
</rule>
 
13
<rule target="host" entity="library">
 
14
        $(call quiet--command,$(AR) cru $@ $^; $(RANLIB) $@," HOSTAR $(TARGET_DIR)$@")
 
15
</rule>
 
16
<rule target="host" entity="fcode">
 
17
        $(call quiet-command,$(TOKE) -o $@ $^,"  TOKE  $(TARGET_DIR)$@")
 
18
</rule>
 
19
 
 
20
 <!-- target/cross compiler build rules -->
 
21
<rule target="target" entity="executable">
 
22
        $(call quiet-command,$(CC) $(CFLAGS) -o $@ $^,"  CC    $(TARGET_DIR)$@")
 
23
</rule>
 
24
<rule target="target" entity="object">
 
25
        $(call quiet-command,$(CC) $$EXTRACFLAGS $(CFLAGS) $(INCLUDES) -c -o $@ $&lt;,"  CC    $(TARGET_DIR)$@")
 
26
</rule>
 
27
<rule target="target" entity="object" extracflags="1">
 
28
        $(call quiet-command,$(CC) $$EXTRACFLAGS $(CFLAGS) $(INCLUDES)</rule>
 
29
<rule target="target" entity="object" extracflags="2"> -c -o $@ $&lt;,"  CC    $(TARGET_DIR)$@")
 
30
</rule>
 
31
<rule target="target" entity="library">
 
32
        $(call quiet-command,$(AR) cru $@ $^; $(RANLIB) $@,"  AR    $(TARGET_DIR)$@")
 
33
</rule>
 
34
</rules>