[tools] Add nuget-hash-extractor tool to help produce the runtime ignored assemblies...
[mono.git] / tools / nuget-hash-extractor / Makefile
diff --git a/tools/nuget-hash-extractor/Makefile b/tools/nuget-hash-extractor/Makefile
new file mode 100644 (file)
index 0000000..1d52b77
--- /dev/null
@@ -0,0 +1,13 @@
+SOURCES = \
+       nuget-hash-extractor.cs
+
+nuget-hash-extractor.exe: $(SOURCES)
+        mcs /r:System.Xml.Linq  /r:System.IO.Compression -o:nuget-hash-extractor.exe $(SOURCES)
+
+download:
+       echo "Downloading all the nugets";      \
+       ./download.sh
+
+run: nuget-hash-extractor.exe
+       mono nuget-hash-extractor.exe nugets
+.PHONY: download run