Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / tools / nuget-hash-extractor / Makefile
1 SOURCES = \
2         nuget-hash-extractor.cs
3
4 nuget-hash-extractor.exe: $(SOURCES)
5          mcs /r:System.Xml.Linq  /r:System.IO.Compression -o:nuget-hash-extractor.exe $(SOURCES)
6
7 .download_stamp_file: Makefile download.sh
8         echo "Downloading all the nugets";      \
9         ./download.sh
10
11 download: .download_stamp_file
12
13 run: download nuget-hash-extractor.exe exec-ver exec-asm exec-msbuild
14
15 run-asm: download nuget-hash-extractor.exe exec-asm
16
17 exec-asm:
18         mono nuget-hash-extractor.exe nugets asm
19
20 exec-msbuild:
21         mono nuget-hash-extractor.exe nugets guids_for_msbuild
22
23 run-ver: download nuget-hash-extractor.exe exec-ver
24
25 exec-ver:
26         mono nuget-hash-extractor.exe nugets ver
27
28 .PHONY: download run