You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
20
external/roslyn-binaries/ValueTuple/Makefile
vendored
Normal file
20
external/roslyn-binaries/ValueTuple/Makefile
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
COMPILE = mkdir -p $(dir $(1)) && mcs -target:library -out:$(1) -nostdlib -r:$(2)/mscorlib.dll ValueTuple.cs
|
||||
|
||||
.PHONY: all
|
||||
all: bin/Net45/ValueTuple.dll bin/Xamarin.Mac/ValueTuple.dll bin/Xamarin.iOS/ValueTuple.dll bin/Xamarin.Android/ValueTuple.dll
|
||||
|
||||
bin/Net45/ValueTuple.dll: ValueTuple.cs
|
||||
$(call COMPILE,$@,/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/4.5)
|
||||
|
||||
bin/Xamarin.Mac/ValueTuple.dll: ValueTuple.cs
|
||||
$(call COMPILE,$@,/Library/Frameworks/Xamarin.Mac.framework/Versions/Current/lib/mono/Xamarin.Mac)
|
||||
|
||||
bin/Xamarin.iOS/ValueTuple.dll: ValueTuple.cs
|
||||
$(call COMPILE,$@,/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/Xamarin.iOS)
|
||||
|
||||
bin/Xamarin.Android/ValueTuple.dll: ValueTuple.cs
|
||||
$(call COMPILE,$@,/Library/Frameworks/Xamarin.Android.framework/Versions/Current/lib/mono/2.1)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf bin
|
Reference in New Issue
Block a user