Fix Build.

svn path=/branches/ros-amd64-bringup/; revision=44787
This commit is contained in:
Samuel Serapion 2009-12-28 03:09:37 +00:00
parent 6fa94d46fb
commit c48d677ecb
4 changed files with 28 additions and 4 deletions

View file

@ -90,4 +90,10 @@
-->
<property name="_ELF_" value="0" />
<!--
Whether to compile any usermode parts. This is while kernel mode is under
heavy development and usermode part not relevant for bootcd.
-->
<property name="USERMODE" value="1" />
</group>

View file

@ -70,4 +70,10 @@
-->
<property name="_ELF_" value="0" />
<!--
Whether to compile any usermode parts. This is while kernel mode is under
heavy development and usermode part not relevant for bootcd.
-->
<property name="USERMODE" value="1" />
</group>

View file

@ -97,6 +97,12 @@
<!--
Whether to compile the multi processor versions for ntoskrnl and hal.
-->
<property name="BUILD_MP" value="1" />
<property name="BUILD_MP" value="0" />
<!--
Whether to compile any usermode parts. This is while kernel mode is under
heavy development and usermode part not relevant for bootcd.
-->
<property name="USERMODE" value="1" />
</group>

View file

@ -263,7 +263,9 @@ ${call RBUILD_intermediate_path_noext,$(2)}_c: $(2) $(3) $$(widl_TARGET) | ${cal
$$(Q)$$(widl_TARGET) ${call RBUILD_midlflags,$(1),$(4),-I${call RBUILD_dir,$(2)}} -h -H ${call RBUILD_intermediate_path_noext,$(2)}_c.h -c -C ${call RBUILD_intermediate_path_noext,$(2)}_c.c $(2)
$${checkpoint} $$@>$(NUL)
${call RBUILD_CC,$(1),${call RBUILD_intermediate_path_noext,$(2)}_c.c,,-fno-unit-at-a-time,${call RBUILD_intermediate_path_noext,$(2)}_c.o}endef
${call RBUILD_CC,$(1),${call RBUILD_intermediate_path_noext,$(2)}_c.c,,,${call RBUILD_intermediate_path_noext,$(2)}_c.o}
endef
#(module, source, dependencies, cflags)
define RBUILD_WIDL_SERVER_RULE
@ -277,7 +279,9 @@ ${call RBUILD_intermediate_path_noext,$(2)}_s: $(2) $(3) $$(widl_TARGET) | ${cal
$$(Q)$$(widl_TARGET) ${call RBUILD_midlflags,$(1),$(4),-I${call RBUILD_dir,$(2)}} -h -H ${call RBUILD_intermediate_path_noext,$(2)}_s.h -s -S ${call RBUILD_intermediate_path_noext,$(2)}_s.c $(2)
$${checkpoint} $$@>$(NUL)
${call RBUILD_CC,$(1),${call RBUILD_intermediate_path_noext,$(2)}_s.c,,-fno-unit-at-a-time,${call RBUILD_intermediate_path_noext,$(2)}_s.o}endef
${call RBUILD_CC,$(1),${call RBUILD_intermediate_path_noext,$(2)}_s.c,,,${call RBUILD_intermediate_path_noext,$(2)}_s.o}
endef
#(module, source, dependencies, cflags)
define RBUILD_WIDL_PROXY_RULE
@ -291,7 +295,9 @@ ${call RBUILD_intermediate_path_noext,$(2)}_p: $(2) $(3) $$(widl_TARGET) | ${cal
$$(Q)$$(widl_TARGET) ${call RBUILD_midlflags,$(1),$(4),-I${call RBUILD_dir,$(2)}} -h -H ${call RBUILD_intermediate_path_noext,$(2)}_p.h -p -P ${call RBUILD_intermediate_path_noext,$(2)}_p.c $(2)
$${checkpoint} $$@>$(NUL)
${call RBUILD_CC,$(1),${call RBUILD_intermediate_path_noext,$(2)}_p.c,,-fno-unit-at-a-time,${call RBUILD_intermediate_path_noext,$(2)}_p.o}endef
${call RBUILD_CC,$(1),${call RBUILD_intermediate_path_noext,$(2)}_p.c,,,${call RBUILD_intermediate_path_noext,$(2)}_p.o}
endef
#(module, source, dependencies, cflags)
define RBUILD_WIDL_INTERFACE_RULE