- install PlanetLab-specific extensions
[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/vcached \
40                            scripts/vuseradd \
41                            scripts/vuserdel \
42                            scripts/vtop
43 scripts_gen_PRGS        =  scripts/vps
44
45 scripts_PRGS            =  $(scripts_src_PRGS) $(scripts_gen_PRGS)
46 scripts_SCRPTS          =  $(scripts_src_SCRPTS) $(scripts_gen_SCRPTS)
47 scripts_LEGSCRPTS       =  $(scripts_src_LEGSCRPTS) $(scripts_gen_LEGSCRPTS)
48 scriptscfg_DATA         =  scripts/util-vserver-vars
49
50 scripts_XTRAS           =  scripts/util-vserver-vars.subst \
51                            scripts/vkill.subst \
52                            scripts/vps.subst \
53                            $(scripts_src_SCRPTS) $(scripts_src_PRGS) \
54                            $(scripts_src_LEGSCRPTS)
55
56 scripts_GENSCRPTS       =  scripts/util-vserver-vars \
57                            $(scripts_gen_SCRPTS) $(scripts_gen_PRGS) \
58                            $(scripts_gen_LEGSCRPTS)
59
60 scripts/%:              scripts/%.subst
61                         @mkdir -p $$(dirname '$@')
62                         sed -e 's!@'PKGLIBDIR'@!$(pkglibdir)!g; \
63                                 s!@'SBINDIR'@!$(sbindir)!g; \
64                                 s!@'VSERVERDIR'@!$(vserverdir)!g' '$<' >'$@.tmp'
65                         @-chmod --reference='$<' '$@.tmp'
66                         @-rm -f '$@'
67                         mv '$@.tmp' '$@'
68                         @chmod a-w '$@'