update readme and add gitignore
[client-tools.git] / tools / SwgGameServerClean.pl
blobe69df1a728c9ca2ba2defae031501c217adac54d
1 #!/usr/bin/perl -w
2 use BuildFunctions;
6 ###
7 # Copyright (C)2000-2002 Sony Online Entertainment Inc.
8 # All Rights Reserved
10 # Title: SwgGameServerClean.pl
11 # Description: Build release and debug SWGGameServer. Emails the resulting log files to gmcdaniel.
12 # @author $Author: gmcdaniel $
13 # @version $Revision: #3 $
19 ########## MAIN ##########
24 # Delete compile directory for clean build
26 system("c:\\4nt302\\4nt /c del /s /y ..\\src\\compile");
29 ## End of Delete compile directory for clean build
35 # Build Projects and Check for Errors
37 build_project ("SwgGameServer");
38 Check_For_Warnings_and_Errors("SwgGameServer","SwgGameServer.exe");
41 ## End of Build Projects and Check for Errors
44 ########## END OF MAIN ##########