Added license, makefile, and readme.

This commit is contained in:
2015-02-10 21:11:15 -05:00
parent dd1c294798
commit 8346da5225
4 changed files with 417 additions and 2 deletions

View File

@@ -1,3 +1,23 @@
/*
* backly - A simple directory cloner
* Copyright (C) 2015 L. Bradley LaBoon <me@bradleylaboon.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
@@ -22,8 +42,8 @@ void printHelp()
printf(" --test\tRun in test mode.\n");
printf(" --help\tPrint this help and quit.\n\n");
printf("Report bugs to me@bradleylaboon.com\n");
printf("backly home page: <http://www.bradleylaboon.com/projects/backly>\n");
printf("Report bugs to L. Bradley LaBoon <me@bradleylaboon.com>\n");
printf("backly home page: <http://git.bradleylaboon.com/backly.git>\n");
}
void removeMissing(char *src, int srcPrefix, char *dest, int destPrefix, int testMode)