This commit was generated by cvs2svn to compensate for changes in r120,
[util-vserver.git] / scripts / Makefile-files
1 ## $Id: Makefile-files,v 1.1.4.3 2003/12/03 00:06:37 ensc Exp $  -*- makefile -*-
2
3 ## Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 ##  
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9 ##  
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14 ##  
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ##  
19
20 scriptscfgdir           =  $(sbindir)
21
22 scripts_src_SCRPTS      =  scripts/distrib-info \
23                            scripts/rootshell \
24                            scripts/save_s_context \
25                            scripts/vprofile \
26                            scripts/vserverkillall \
27                            scripts/vservers.grabinfo.sh \
28                            scripts/vsysvwrapper
29 scripts_gen_SCRPTS      =
30
31 scripts_src_LEGSCRPTS   =  scripts/vunify.sh
32 scripts_gen_LEGSCRPTS   =  scripts/vkill
33
34
35 scripts_src_PRGS        =  scripts/vpstree \
36                            scripts/vrpm \
37                            scripts/vserver \
38                            scripts/vserver-copy \
39                            scripts/vtop
40 scripts_gen_PRGS        =  scripts/vps
41
42 scripts_PRGS            =  $(scripts_src_PRGS) $(scripts_gen_PRGS)
43 scripts_SCRPTS          =  $(scripts_src_SCRPTS) $(scripts_gen_SCRPTS)
44 scripts_LEGSCRPTS       =  $(scripts_src_LEGSCRPTS) $(scripts_gen_LEGSCRPTS)
45 scriptscfg_DATA         =  scripts/util-vserver-vars
46
47 scripts_XTRAS           =  scripts/util-vserver-vars.subst \
48                            scripts/vkill.subst \
49                            scripts/vps.subst \
50                            $(scripts_src_SCRPTS) $(scripts_src_PRGS) \
51                            $(scripts_src_LEGSCRPTS)
52
53 scripts_GENSCRPTS       =  scripts/util-vserver-vars \
54                            $(scripts_gen_SCRPTS) $(scripts_gen_PRGS) \
55                            $(scripts_gen_LEGSCRPTS)
56
57 scripts/%:              scripts/%.subst
58                         @mkdir -p $$(dirname '$@')
59                         sed -e 's!@'PKGLIBDIR'@!$(pkglibdir)!g; \
60                                 s!@'SBINDIR'@!$(sbindir)!g; \
61                                 s!@'VSERVERDIR'@!$(vserverdir)!g' '$<' >'$@.tmp'
62                         @-chmod --reference='$<' '$@.tmp'
63                         @-rm -f '$@'
64                         mv '$@.tmp' '$@'
65                         @chmod a-w '$@'