2008-03-05 09:52:00 -05:00
|
|
|
|
<!--
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Microsoft Research Singularity
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
# File: Interfaces\Hal\Makefile
|
|
|
|
|
#
|
|
|
|
|
# Note:
|
|
|
|
|
#
|
|
|
|
|
##############################################################################
|
|
|
|
|
-->
|
|
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>Hal</AssemblyName>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<OutputPath>$(KERNEL_IL_DIR)</OutputPath>
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<NoStdlib>true</NoStdlib>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<Compile Include="HalDevicesFactory.csi" />
|
|
|
|
|
<Compile Include="HalAcpi.csi" />
|
2008-03-05 09:52:00 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<ProjectReference Include="..\Kernel\Kernel.csproj"><Alias>kernel</Alias></ProjectReference>
|
2008-03-05 09:52:00 -05:00
|
|
|
|
</ItemGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
|
2008-03-05 09:52:00 -05:00
|
|
|
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|
|
|
|
</Project>
|