3 * $Id: sw_links.h,v 1.1 1999/06/02 16:53:36 mdw Exp $
5 * Messing with symlink trees
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of sw-tools.
14 * sw-tools is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * sw-tools is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with sw-tools; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
31 * $Log: sw_links.h,v $
32 * Revision 1.1 1999/06/02 16:53:36 mdw
44 /*----- Header files ------------------------------------------------------*/
50 /*----- Subcommands -------------------------------------------------------*/
52 extern int sw_link(int /*argc*/, char */*argv*/[]);
53 extern int sw_snap(int /*argc*/, char */*argv*/[]);
56 static cmd cmd_snap = {
57 CMD_LINK, "snaplink", sw_snap,
59 Turns links in link trees into real separate files. Each file\n\
60 listed becomes a regular file in each of the architecture symlink\n\
61 trees. Also works even if the trees aren't there, to propagate\n\
62 files. Honours the `--arch' build flag, and the `only-arch'\n\
65 static cmd cmd_link = {
66 &cmd_snap, "linktree", sw_link,
68 Creates a symbolic link tree mirroring the current directory and\n\
69 its subdirectories for each architecture which should be built.\n\
70 Honours the `--arch' build flag, and the `only-arch' settings.\n"
73 # define CMD_LINK &cmd_link
76 /*----- That's all, folks -------------------------------------------------*/