added 'fmt'
[util-vserver.git] / util-vserver / lib / Makefile-files
1 ## $Id$  -*- 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 lib_VERSION =                   0.0.0
21
22 lib_legacy_SRCS =               lib/getprocentry-legacy.c
23 lib_management_SRCS =           lib/createskeleton.c \
24                                 lib/getvserverbyctx.c \
25                                 lib/getvservercfgstyle.c \
26                                 lib/getvserverappdir.c \
27                                 lib/getvservercfgdir.c \
28                                 lib/getvserverctx.c \
29                                 lib/getvservername.c \
30                                 lib/getvservervdir.c
31 lib_v11_SRCS =                  lib/syscall_rlimit.c \
32                                 lib/syscall_rlimit-v11.hc \
33                                 lib/syscall_kill.c  \
34                                 lib/syscall_kill-v11.hc
35 lib_v13_SRCS =                  lib/syscall_enternamespace.c \
36                                 lib/syscall_enternamespace-v13.hc \
37                                 lib/syscall_getiattr.c \
38                                 lib/syscall_getiattr-fscompat.hc \
39                                 lib/syscall_getiattr-v13.hc \
40                                 lib/syscall_setiattr.c \
41                                 lib/syscall_setiattr-fscompat.hc \
42                                 lib/syscall_setiattr-v13.hc \
43                                 lib/syscall_gettaskxid.c \
44                                 lib/syscall_gettaskxid-v13.hc \
45                                 lib/syscall_gettaskxid-oldproc.hc \
46                                 lib/syscall_getvxinfo.c \
47                                 lib/syscall_getvxinfo-v13.hc \
48                                 lib/syscall_getvxinfo-oldproc.hc \
49                                 lib/syscall_getvhiname.c \
50                                 lib/syscall_getvhiname-v13.hc \
51                                 lib/syscall_getvhiname-olduts.hc \
52                                 lib/syscall_setvhiname.c \
53                                 lib/syscall_setvhiname-v13.hc \
54                                 lib/syscall_setvhiname-olduts.hc
55
56 PKGCONFIG_FILES =               lib/util-vserver
57
58 lib_SRCS =                      lib/syscall.c \
59                                 lib/checkversion.c \
60                                 lib/isdirectory.c \
61                                 lib/getversion.c \
62                                 lib/fmt-32.c \
63                                 lib/fmt-64.c \
64                                 lib/fmtx-32.c \
65                                 lib/fmtx-64.c \
66                                 lib/capabilities.c \
67                                 lib/flags.c \
68                                 lib/flags_list.c \
69                                 $(lib_legacy_SRCS) \
70                                 $(lib_management_SRCS) \
71                                 $(lib_v11_SRCS) \
72                                 $(lib_v13_SRCS)
73
74 lib_HDRS =                      lib/vserver.h
75
76 lib_XHDRS =                     lib/syscall-compat.hc \
77                                 lib/syscall-legacy.hc \
78                                 lib/createskeleton-full.hc \
79                                 lib/createskeleton-short.hc \
80                                 lib/getversion-internal.hc \
81                                 lib/safechroot-internal.hc \
82                                 lib/ioctl-getext2flags.hc \
83                                 lib/ioctl-getfilecontext.hc \
84                                 lib/ioctl-setext2flags.hc \
85                                 lib/ioctl-setfilecontext.hc \
86                                 lib/ioctl-getxflg.hc \
87                                 lib/ioctl-setxflg.hc \
88                                 lib/ext2fs.h \
89                                 lib/fmt.h \
90                                 lib/fmt.hc \
91                                 lib/fmtx.hc \
92                                 lib/fmt-internal.h \
93                                 lib/virtual.h \
94                                 lib/internal.h \
95                                 lib/utils-legacy.h \
96                                 lib/vserver-internal.h
97
98 #lib_lib_LIBS                   =  lib/libvserver.a lib/libvserver-pic.a
99 lib_lib_LIBS                    =
100 lib_lib_LTLIBS                  =  lib/libvserver.la
101
102 #lib_libvserver_la_SOURCES      =  $(lib_SRCS)
103 #lib_libvserver_a_SOURCES       =  $(lib_SRCS)
104 #lib_libvserver_a_CPPFLAGS      =  $(AM_CPPFLAGS) $(LIB_DEBUG_CPPFLAGS) -I$(kernelincludedir) -D_REENTRANT -D_GNU_SOURCE
105 # _REENTRANT is needed for dietlibc to use __error_location
106
107 #lib_libvserver_pic_a_SOURCES   =  $(lib_SRCS)
108 #lib_libvserver_pic_a_CPPFLAGS  =  $(lib_libvserver_a_CPPFLAGS) -fPIC
109
110 lib_libvserver_la_SOURCES =     $(lib_SRCS)
111 lib_libvserver_la_CPPFLAGS =    $(AM_CPPFLAGS) $(LIB_DEBUG_CPPFLAGS) -I$(kernelincludedir) -D_REENTRANT -D_GNU_SOURCE
112 lib_libvserver_la_LDFLAGS =     -version $(lib_VERSION)
113
114 lib_DIETPROGS =                 lib/lib_libvserver_la-% \
115                                 lib/lib_libvserver_a-% \
116                                 lib/lib_libvserver_pic_a-% \
117                                 $(lib_testsuite_DIETPROGS)
118
119 include $(srcdir)/lib/testsuite/Makefile-files