[runtime] Blacklist System.Threading.Overlapped nugets
[mono.git] / tools / nuget-hash-extractor / Makefile
index 1d52b77c0cf11ca21ed8ab645b9f618491c92de6..05b30f25975919693cfcac349c3fad47f9c08492 100644 (file)
@@ -4,10 +4,22 @@ SOURCES = \
 nuget-hash-extractor.exe: $(SOURCES)
         mcs /r:System.Xml.Linq  /r:System.IO.Compression -o:nuget-hash-extractor.exe $(SOURCES)
 
-download:
+.download_stamp_file: Makefile download.sh
        echo "Downloading all the nugets";      \
        ./download.sh
 
-run: nuget-hash-extractor.exe
-       mono nuget-hash-extractor.exe nugets
+download: .download_stamp_file
+
+run: download nuget-hash-extractor.exe exec-ver exec-asm
+
+run-asm: download nuget-hash-extractor.exe exec-asm
+
+exec-asm:
+       mono nuget-hash-extractor.exe nugets asm
+
+run-ver: download nuget-hash-extractor.exe exec-ver
+
+exec-ver:
+       mono nuget-hash-extractor.exe nugets ver
+
 .PHONY: download run