remove bwlimit from this module, now in plnode-utils
[util-vserver-pl.git] / Makefile.am
1 ## $Id$
2
3 # Copyright (C) 2003,2004,2005,2006 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 python_vserverimpl_la_SOURCES = python/vserverimpl.c 
21 python_vserverimpl_la_LIBADD =  -lvserver
22 python_vserverimpl_la_CFLAGS =  -Wno-redundant-decls -I$(top_srcdir)/src $(PYTHON_INCLUDES)
23 python_vserverimpl_la_LDFLAGS = -module -avoid-version
24
25 src_vip6_autod_SOURCES =        src/vip6-autod.c
26 src_vip6_autod_LDADD =          -lvserver -lnl
27
28 src_vsh_SOURCES =               src/vsh.c
29
30 man_MANS =                      man/vsh.8
31
32 pyexec_LTLIBRARIES =            python/vserverimpl.la
33
34 pyexec_DATA =                   python/vserver.py \
35                                 python/cpulimit.py
36
37 sbin_SCRIPTS =                  python/disklimit \
38                                 scripts/vuseradd \
39                                 scripts/vuserdel
40
41 sbin_PROGRAMS =                 src/vsh 
42
43 sysv_SCRIPTS =                  
44
45 if ENSC_HAVE_LIBNL
46 sbin_PROGRAMS +=                src/vip6-autod
47 sysv_SCRIPTS +=                 sysv/vip6-autod
48 endif
49
50 crondir =                       $(sysconfdir)/cron.d
51
52 logrotatedir =                  $(sysconfdir)/logrotate.d
53
54 install-data-hook: install-fix-script-paths
55
56 fix_SCRPTS =                    $(addprefix $(sbindir)/,  $(notdir $(sbin_SCRIPTS))) \
57                                 $(addprefix $(sysvdir)/,  $(notdir $(sysv_SCRIPTS)))
58
59 install-fix-script-paths:
60         test "$(UV_PKGLIBDIR)" = "/usr/lib/util-vserver" || \
61         for i in $(fix_SCRPTS); do \
62                 f="$(DESTDIR)$$i"; \
63                 $(SED) -e 's!/usr/lib/util-vserver!$(UV_PKGLIBDIR)!g' "$$f" > "$$f.tmp"; \
64                 cmp -s "$$f.tmp" "$$f" || cat "$$f.tmp" > "$$f"; \
65                 rm -f "$$f.tmp"; \
66         done