[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / tools / nuget-hash-extractor / Makefile
blobd754d5b2e7cfeadf198b8b9c259a0d925584cfd1
1 SOURCES = \
2 nuget-hash-extractor.cs
4 nuget-hash-extractor.exe: $(SOURCES)
5 mcs /r:System.Xml.Linq /r:System.IO.Compression -o:nuget-hash-extractor.exe $(SOURCES)
7 .download_stamp_file: Makefile download.sh
8 echo "Downloading all the nugets"; \
9 ./download.sh
11 download: .download_stamp_file
13 run: download nuget-hash-extractor.exe exec-ver exec-asm exec-msbuild
15 run-asm: download nuget-hash-extractor.exe exec-asm
17 exec-all:
18 mono nuget-hash-extractor.exe nugets all
20 exec-asm:
21 mono nuget-hash-extractor.exe nugets asm
23 exec-msbuild:
24 mono nuget-hash-extractor.exe nugets guids_for_msbuild
26 run-ver: download nuget-hash-extractor.exe exec-ver
28 exec-ver:
29 mono nuget-hash-extractor.exe nugets ver
31 .PHONY: download run