45 lines
1.2 KiB
XML
45 lines
1.2 KiB
XML
<!--
|
|
##############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# File: Interfaces\Hal\Makefile
|
|
#
|
|
# Note:
|
|
#
|
|
##############################################################################
|
|
-->
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Hal</AssemblyName>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoStdlib>true</NoStdlib>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="HalTimer.csi" />
|
|
<Compile Include="HalClock.csi" />
|
|
<Compile Include="HalDevices.csi" />
|
|
<Compile Include="HalPic.csi" />
|
|
<Compile Include="HalScreen.csi" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Basetypes\Basetypes.csproj">
|
|
<Alias>kernel.exe</Alias>
|
|
</ProjectReference>
|
|
<ProjectReference Include="Processor.csproj">
|
|
<Alias>kernel.exe</Alias>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|
</Project>
|