remove planetlab.* and netns.c as they are no longer used by util-vserver-pl
[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/bwlimit.py \
36                                 python/cpulimit.py
37
38 sbin_SCRIPTS =                  python/bwlimit \
39                                 python/disklimit \
40                                 scripts/vuseradd \
41                                 scripts/vuserdel
42
43 sbin_PROGRAMS =                 src/vsh 
44
45 sysv_SCRIPTS =                  
46
47 if ENSC_HAVE_LIBNL
48 sbin_PROGRAMS +=                src/vip6-autod
49 sysv_SCRIPTS +=                 sysv/vip6-autod
50 endif
51
52 crondir =                       $(sysconfdir)/cron.d
53
54 logrotatedir =                  $(sysconfdir)/logrotate.d
55
56 install-data-hook: install-fix-script-paths
57
58 fix_SCRPTS =                    $(addprefix $(sbindir)/,  $(notdir $(sbin_SCRIPTS))) \
59                                 $(addprefix $(sysvdir)/,  $(notdir $(sysv_SCRIPTS)))
60
61 install-fix-script-paths:
62         test "$(UV_PKGLIBDIR)" = "/usr/lib/util-vserver" || \
63         for i in $(fix_SCRPTS); do \
64                 f="$(DESTDIR)$$i"; \
65                 $(SED) -e 's!/usr/lib/util-vserver!$(UV_PKGLIBDIR)!g' "$$f" > "$$f.tmp"; \
66                 cmp -s "$$f.tmp" "$$f" || cat "$$f.tmp" > "$$f"; \
67                 rm -f "$$f.tmp"; \
68         done