diff --git a/posix.mak b/posix.mak index 1777b9fd16d..0201a47d7d2 100644 --- a/posix.mak +++ b/posix.mak @@ -445,3 +445,10 @@ html_consolidated : $(DOCSRC)/std_consolidated_footer.html > $(DOC_OUTPUT_DIR)/std_consolidated.html ############################# + +.PHONY : auto-tester-build +auto-tester-build: all + +.PHONY : auto-tester-test +auto-tester-test: unittest + diff --git a/win32.mak b/win32.mak index 31dc674e05b..13809c8e56f 100644 --- a/win32.mak +++ b/win32.mak @@ -935,3 +935,8 @@ install: phobos.zip $(CP) $(DOC)\index.html $(DIR)\html\d\phobos\index.html +rd/s/q $(DIR)\src\phobos unzip -o phobos.zip -d $(DIR)\src\phobos + +auto-tester-build: targets + +auto-tester-test: unittest + diff --git a/win64.mak b/win64.mak index 89f935b446b..6d9964b4901 100644 --- a/win64.mak +++ b/win64.mak @@ -889,3 +889,8 @@ install: phobos.zip $(CP) $(DRUNTIME)\lib\gcstub.obj $(DRUNTIME)\lib\gcstub64.obj $(DIR)\windows\lib +rd/s/q $(DIR)\src\phobos unzip -o phobos.zip -d $(DIR)\src\phobos + +auto-tester-build: targets + +auto-tester-test: unittest +