[ci] Enable linker tests on PRs
[mono-project.git] / tools / nuget-hash-extractor / Makefile
blob05b30f25975919693cfcac349c3fad47f9c08492
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
15 run-asm: download nuget-hash-extractor.exe exec-asm
17 exec-asm:
18 mono nuget-hash-extractor.exe nugets asm
20 run-ver: download nuget-hash-extractor.exe exec-ver
22 exec-ver:
23 mono nuget-hash-extractor.exe nugets ver
25 .PHONY: download run