- Don't use .spec file on ARM, it doesn't work.

- For the first time, the entire ARM build of ReactOS builds (for the components we've defined)!
- Now the user-mode fun begins.


svn path=/trunk/; revision=34890
This commit is contained in:
ReactOS Portable Systems Group 2008-07-28 03:07:50 +00:00
parent e34e342d45
commit a9f6591d2c

View file

@ -1,6 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd">
<group>
<if property="ARCH" value="arm">
<module name="hal" type="kernelmodedll">
<importlibrary definition="hal_arm.def" />
<include base="ntoskrnl">include</include>
<library>ntoskrnl</library>
<define name="_NTHAL_" />
<file>hal.c</file>
<file>hal.rc</file>
<file>hal.spec</file>
</module>
</if>
<if property="ARCH" value="i386">
<module name="hal" type="kernelmodedll">
<importlibrary definition="hal.spec.def" />
<include base="ntoskrnl">include</include>
@ -10,6 +22,7 @@
<file>hal.rc</file>
<file>hal.spec</file>
</module>
</if>
<if property="ARCH" value="i386">
<module ifnot="false" name="halupalias" type="alias" installbase="system32" installname="hal.dll" aliasof="halup">
</module>