Do not print success message when building or cleaning mod source

This commit is contained in:
Taryn Hill 2017-08-25 13:10:51 -05:00 committed by Paul Chote
parent ab69d7602f
commit 78d46b68d8

View File

@ -55,7 +55,6 @@ ifeq ("$(HAS_MSBUILD)","")
else
@find . -maxdepth 1 -name '*.sln' -exec msbuild /t:Rebuild /nr:false \;
endif
@find . -maxdepth 1 -name '*.sln' -exec printf "The mod logic has been built.\n" \;
clean: engine
ifeq ("$(HAS_MSBUILD)","")
@ -63,7 +62,6 @@ ifeq ("$(HAS_MSBUILD)","")
else
@find . -maxdepth 1 -name '*.sln' -exec msbuild /t:Clean /nr:false \;
endif
@find . -maxdepth 1 -name '*.sln' -exec printf "The mod logic has been cleaned.\n" \;
@cd $(ENGINE_DIRECTORY) && make clean
@printf "The engine has been cleaned.\n"