usage: Print metavariables in SHOUTY letters.
[sw-tools] / src / sw_links.h
1 /* -*-c-*-
2 *
3 * $Id: sw_links.h,v 1.2 2004/04/08 01:52:19 mdw Exp $
4 *
5 * Messing with symlink trees
6 *
7 * (c) 1999 EBI
8 */
9
10 /*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of sw-tools.
13 *
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.
18 *
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.
23 *
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.
27 */
28
29 #ifndef SW_LINKS_H
30 #define SW_LINKS_H
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 /*----- Header files ------------------------------------------------------*/
37
38 #ifndef SW_H
39 # include "sw.h"
40 #endif
41
42 /*----- Subcommands -------------------------------------------------------*/
43
44 extern int sw_link(int /*argc*/, char */*argv*/[]);
45 extern int sw_snap(int /*argc*/, char */*argv*/[]);
46
47 #ifdef CMD_LINK
48 static cmd cmd_snap = {
49 CMD_LINK, "snaplink", sw_snap,
50 "snaplink FILE...\n\
51 Turns links in link trees into real separate files. Each file\n\
52 listed becomes a regular file in each of the architecture symlink\n\
53 trees. Also works even if the trees aren't there, to propagate\n\
54 files. Honours the `--arch' build flag, and the `only-arch'\n\
55 settings.\n"
56 };
57 static cmd cmd_link = {
58 &cmd_snap, "linktree", sw_link,
59 "linktree\n\
60 Creates a symbolic link tree mirroring the current directory and\n\
61 its subdirectories for each architecture which should be built.\n\
62 Honours the `--arch' build flag, and the `only-arch' settings.\n"
63 };
64 # undef CMD_LINK
65 # define CMD_LINK &cmd_link
66 #endif
67
68 /*----- That's all, folks -------------------------------------------------*/
69
70 #ifdef __cplusplus
71 }
72 #endif
73
74 #endif