]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/Makefile.am
use config.h to define the lxcpath and co
[mirror_lxc.git] / src / lxc / Makefile.am
1 AM_CFLAGS= -I$(top_srcdir)/src
2
3 lib_LTLIBRARIES = liblxc.la
4 pkginclude_HEADERS = \
5 start.h \
6 error.h \
7 monitor.h \
8 utils.h \
9 namespace.h \
10 lock.h \
11 lxc.h \
12 cgroup.h \
13 conf.h \
14 list.h \
15 log.h \
16 state.h
17
18
19 liblxc_la_SOURCES = \
20 arguments.c arguments.h \
21 commands.c commands.h \
22 create.c \
23 destroy.c \
24 start.c \
25 stop.c \
26 monitor.c monitor.h \
27 console.c \
28 freezer.c \
29 checkpoint.c \
30 restart.c \
31 error.h error.c \
32 parse.c parse.h \
33 cgroup.c cgroup.h \
34 lxc.h \
35 utils.c utils.h \
36 lock.c lock.h \
37 namespace.h namespace.c \
38 conf.c conf.h \
39 confile.c confile.h \
40 list.h \
41 state.c state.h \
42 log.c log.h \
43 \
44 network.c network.h \
45 nl.c nl.h \
46 rtnl.c rtnl.h \
47 genl.c genl.h \
48 \
49 mainloop.c mainloop.h \
50 af_unix.c af_unix.h \
51 \
52 cr_plugin_columbia.c lxc_plugin.h
53
54 liblxc_la_LDFLAGS = -release @PACKAGE_VERSION@
55 liblxc_la_LIBADD = -lutil
56
57 bin_SCRIPTS = \
58 lxc-ps \
59 lxc-netstat \
60 lxc-ls \
61 lxc-checkconfig \
62 lxc-setcap \
63 lxc-version
64
65 bin_PROGRAMS = \
66 lxc-unshare \
67 lxc-create \
68 lxc-destroy \
69 lxc-stop \
70 lxc-start \
71 lxc-execute \
72 lxc-monitor \
73 lxc-wait \
74 lxc-console \
75 lxc-freeze \
76 lxc-info \
77 lxc-cgroup \
78 lxc-unfreeze \
79 lxc-checkpoint \
80 lxc-restart
81
82 libexec_PROGRAMS = \
83 lxc-init
84
85 lxc_unshare_SOURCES = lxc_unshare.c
86 lxc_unshare_LDADD = liblxc.la
87
88 lxc_init_SOURCES = lxc_init.c
89 lxc_init_LDADD = liblxc.la
90
91 lxc_create_SOURCES = lxc_create.c
92 lxc_create_LDADD = liblxc.la
93
94 lxc_destroy_SOURCES = lxc_destroy.c
95 lxc_destroy_LDADD = liblxc.la
96
97 lxc_start_SOURCES = lxc_start.c
98 lxc_start_LDADD = liblxc.la
99
100 lxc_stop_SOURCES = lxc_stop.c
101 lxc_stop_LDADD = liblxc.la
102
103 lxc_execute_SOURCES = lxc_execute.c
104 lxc_execute_LDADD = liblxc.la
105
106 lxc_monitor_SOURCES = lxc_monitor.c
107 lxc_monitor_LDADD = liblxc.la
108
109 lxc_wait_SOURCES = lxc_wait.c
110 lxc_wait_LDADD = liblxc.la
111
112 lxc_console_SOURCES = lxc_console.c
113 lxc_console_LDADD = liblxc.la
114
115 lxc_info_SOURCES = lxc_info.c
116 lxc_info_LDADD = liblxc.la
117
118 lxc_freeze_SOURCES = lxc_freeze.c
119 lxc_freeze_LDADD = liblxc.la
120
121 lxc_unfreeze_SOURCES = lxc_unfreeze.c
122 lxc_unfreeze_LDADD = liblxc.la
123
124 lxc_cgroup_SOURCES = lxc_cgroup.c
125 lxc_cgroup_LDADD = liblxc.la
126
127 lxc_checkpoint_SOURCES = lxc_checkpoint.c
128 lxc_checkpoint_LDADD = liblxc.la
129
130 lxc_restart_SOURCES = lxc_restart.c
131 lxc_restart_LDADD = liblxc.la