added $(lib_XHDRS) and compat.h
[util-vserver.git] / util-vserver / Makefile.am
1 ## $Id$
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 ACLOCAL_AMFLAGS         =  -I m4
21 SUBDIRS                 =  . distrib
22
23 CVS2CL_AMFLAGS          =  $(CVS2CL_TAG) -U cvsusers.map
24 CVS2CL_ALLFLAGS        :=  $(CVS2CL_AMFLAGS) $(CVS2CL_FLAGS)
25
26 sysvdir                 =  $(sysconfdir)/init.d
27 confdir                 =  $(sysconfdir)/vservers
28
29 include_HEADERS         =  $(lib_HDRS)
30 noinst_HEADERS          =  $(src_HDRS) $(lib_XHDRS) compat.h
31
32 lib_LIBRARIES           =  $(lib_lib_LIBS)
33
34 pkglib_SCRIPTS          =  $(scripts_SCRPTS)
35 pkglib_DATA             =  $(scriptscfg_DATA) $(scripts_DTA)
36 pkglib_PROGRAMS         =  $(src_pkglib_PRGS)
37
38 sbin_SCRIPTS            =  $(scripts_PRGS)
39 sbin_PROGRAMS           =  $(src_sbin_PRGS)
40 noinst_PROGRAMS         =  $(test_PRGS)
41
42 sysv_SCRIPTS            =  $(sysv_SCRPTS)
43 sysconf_DATA            =  $(sysv_CFG)
44
45 BUILT_SOURCES           =  linuxcaps.h pathconfig.h
46
47 man_MANS                =  $(man_DATMAN)
48
49 EXTRA_DIST              =  $(sysv_XTRAS) $(sysv_CFG) \
50                            $(doc_DAT) $(man_DATMAN) \
51                            $(scripts_SCRPTS) $(scripts_PRGS) $(scripts_XTRAS) \
52                            pathconfig.h.pathsubst \
53                            util-vserver.spec \
54                            m4/ensc_cflags.m4 \
55                            THANKS
56
57 AM_CPPFLAGS             =  -I $(top_srcdir)/lib -D _GNU_SOURCE
58 AM_CFLAGS               =  -Wall -pedantic
59
60 CLEANFILES              =  $(sysv_GENSCRPTS) $(scripts_GENSCRPTS) \
61                            .*.pathsubst.stamp */.*.pathsubst.stamp \
62                            linuxcaps.h pathconfig.h
63
64 if USE_DIETLIBC
65 DIET                    =  diet
66 DIET_FLAGS              =
67 DIET_CC                :=  $(DIET) $(DIET_FLAGS) $(CC)
68 endif
69
70 linuxcaps.h:
71                         ln -sf ${kernelincludedir}/linux/capability.h linuxcaps.h
72
73 pathconfig.h:           .pathconfig.h.pathsubst.stamp
74 .%.pathsubst.stamp:     %.pathsubst Makefile
75                         @mkdir -p $$(dirname '$@')
76                         @echo "sed -e '...' $*.pathsubst >$*"
77                         @sed -e 's!@'PKGLIBDIR'@!$(pkglibdir)!g; \
78                                 s!@'SBINDIR'@!$(sbindir)!g; \
79                                 s!@'CONFDIR'@!$(confdir)!g; \
80                                 s!@'SYSCONFDIR'@!$(sysconfdir)!g; \
81                                 s!@'PACKAGE'@!$(PACKAGE)!g; \
82                                 s!@'PACKAGE_BUGREPORT'@!$(PACKAGE_BUGREPORT)!g; \
83                                 s!@'PACKAGE_NAME'@!$(PACKAGE_NAME)!g; \
84                                 s!@'PACKAGE_STRING'@!$(PACKAGE_STRING)!g; \
85                                 s!@'PACKAGE_TARNAME'@!$(PACKAGE_TARNAME)!g; \
86                                 s!@'PACKAGE_VERSION'@!$(PACKAGE_VERSION)!g; \
87                                 s!@'AWK'@!$(AWK)!g; \
88                                 s!@'GREP'@!$(GREP)!g; \
89                                 s!@'IP'@!$(IP)!g; \
90                                 s!@'MOUNT'@!$(MOUNT)!g; \
91                                 s!@'NICE'@!$(NICE)!g; \
92                                 s!@'VCONFIG'@!$(VCONFIG)!g; \
93                                 s!@'WC'@!$(WC)!g; \
94                                ' '$<' >'$@.tmp'
95                         @if cmp -s '$@.tmp' '$*'; then \
96                                 echo "... no changes, reusing old version"; \
97                                 rm -f '$@.tmp'; \
98                         else \
99                                 rm -f '$*'; mv '$@.tmp' '$*'; \
100                         fi
101                         @chmod a-w '$*'
102                         @touch '$@'
103
104 install-data-local:
105                         $(INSTALL) -d -m755 $(DESTDIR)$(localstatedir)/run/vservers
106
107 include $(top_srcdir)/lib/Makefile-files
108 include $(top_srcdir)/src/Makefile-files
109 include $(top_srcdir)/doc/Makefile-files
110 include $(top_srcdir)/man/Makefile-files
111 include $(top_srcdir)/scripts/Makefile-files
112 include $(top_srcdir)/tests/Makefile-files
113 include $(top_srcdir)/sysv/Makefile-files
114
115 include $(top_srcdir)/m4/gpgsig.am
116 include $(top_srcdir)/m4/validate.am
117 include $(top_srcdir)/m4/changelog.am
118 include $(top_srcdir)/m4/pkgconfig.am