1d52b77c0cf11ca21ed8ab645b9f618491c92de6
[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:
8         echo "Downloading all the nugets";      \
9         ./download.sh
10
11 run: nuget-hash-extractor.exe
12         mono nuget-hash-extractor.exe nugets
13 .PHONY: download run