Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / tools / nuget-hash-extractor / Makefile
index 371aca44bbfd05a69f6cf936406bda325d4b17c5..4df4d768ff470719ccc2cc23dcc2cbc0a586c797 100644 (file)
@@ -10,13 +10,19 @@ nuget-hash-extractor.exe: $(SOURCES)
 
 download: .download_stamp_file
 
-run: nuget-hash-extractor.exe .download_stamp_file
-       mono nuget-hash-extractor.exe nugets
+run: download nuget-hash-extractor.exe exec-ver exec-asm exec-msbuild
 
-run-asm: nuget-hash-extractor.exe .download_stamp_file
+run-asm: download nuget-hash-extractor.exe exec-asm
+
+exec-asm:
        mono nuget-hash-extractor.exe nugets asm
 
-run-ver: nuget-hash-extractor.exe .download_stamp_file
+exec-msbuild:
+       mono nuget-hash-extractor.exe nugets guids_for_msbuild
+
+run-ver: download nuget-hash-extractor.exe exec-ver
+
+exec-ver:
        mono nuget-hash-extractor.exe nugets ver
 
 .PHONY: download run