first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / buildor / synch_build.pl
1 #!/usr/bin/perl
2
3 ###############################################################################
4 #                                                                             #
5 #  Name   : synch_build                                                       #
6 #  Author : Chris Koeritz                                                     #
7 #  Rights : Copyright (C) 2003-$now by Author                                 #
8 #                                                                             #
9 #  Purpose:                                                                   #
10 #                                                                             #
11 #    Compares the files in an installation to the files stored in the build   #
12 #  repository ($/dll and $/exe).  Any files differing in the installation     #
13 #  directory are copied from the repository to the installation.  This is a   #
14 #  cheaper form of an install program, without the extra rigmarole.           #
15 #                                                                             #
16 ###############################################################################
17 #  This program is free software; you can redistribute it and/or modify it    #
18 #  under the terms of the GNU General Public License as published by the Free #
19 #  Software Foundation; either version 2 of the License or (at your option)   #
20 #  any later version.  See: "http://www.gruntose.com/Info/GNU/GPL.html" for a #
21 #  version of the License.  Please send any updates to "fred@gruntose.com".   #
22 ###############################################################################
23
24 require "diff_lib.pl";
25
26 &synchronize_against_build(@ARGV);
27
28 exit 0;  # scram.
29