Merge pull request #4621 from alexanderkyte/strdup_env
[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: nuget-hash-extractor.exe .download_stamp_file
14         mono nuget-hash-extractor.exe nugets
15
16 run-asm: nuget-hash-extractor.exe .download_stamp_file
17         mono nuget-hash-extractor.exe nugets asm
18
19 run-ver: nuget-hash-extractor.exe .download_stamp_file
20         mono nuget-hash-extractor.exe nugets ver
21
22 .PHONY: download run