Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « Mono.Simd « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97ec88b88e88b58261b88c5117663e4824a6b649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
thisdir = class/Mono.Simd
SUBDIRS = 
include ../../build/rules.make

LIBRARY = Mono.Simd.dll
LIB_REFS = System.Core
LIB_MCS_FLAGS = -r:$(corlib) -r:System.Core.dll /unsafe
TEST_MCS_FLAGS = -r:Mono.Simd.dll

NO_TEST = yes


# This is a .NET 2.0+ only assembly
VALID_PROFILE := $(filter net_4_5, $(PROFILE))
ifndef VALID_PROFILE
LIBRARY_NAME = dummy-Mono.Simd.dll
NO_INSTALL = yes
NO_TEST = yes
endif

include ../../build/library.make