Merged in Governor-Tarkin/swg-src (pull request #17)
[swg-src.git] / tools / publishBuildClean.pl
blob659e259bb730de63675d0f7093530976b39e1f22
1 #!/usr/bin/perl -w
2 use BuildFunctions;
5 ###
6 # Copyright (C)2000-2002 Sony Online Entertainment Inc.
7 # All Rights Reserved
9 # Title: publishBuildClean.pl
10 # Description: Builds release and debug all_Client, SWGGameServer, and PlanetServer from scratch. Emails resulting logfiles to gmcdaniel.
11 # @author $Author: gmcdaniel $
12 # @version $Revision: #3 $
19 ########## MAIN ##########
23 # Delete compile directory for clean build
25 system("c:\\4nt302\\4nt /c del /s /y ..\\src\\compile");
28 ## End of Delete compile directory for clean build
35 # Build Projects and Check for Errors
37 build_project ("_all_client");
38 Check_For_Warnings_and_Errors("_all_client","_all_client");
40 build_project ("PlanetServer");
41 Check_For_Warnings_and_Errors("PlanetServer","PlanetServer.exe");
43 build_project ("SwgGameServer");
44 Check_For_Warnings_and_Errors("SwgGameServer","SwgGameServer.exe");
47 ## End of Build Projects and Check for Errors
52 ########## END OF MAIN ##########