]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/Makefile.am
2acd29ab81c0350fa1abf6c5c5a762e0cec49cf5
[mirror_lxc.git] / src / lxc / Makefile.am
1 INCLUDES= -I$(top_srcdir)/src
2
3 lib_LTLIBRARIES = liblxc.la
4 pkginclude_HEADERS = \
5 monitor.h \
6 lxc.h \
7 lxc_cgroup.h \
8 lxc_conf.h \
9 lxc_list.h \
10 lxc_lock.h \
11 lxc_log.h \
12 lxc_namespace.h \
13 lxc_state.h \
14 lxc_utils.h
15
16 liblxc_la_SOURCES = \
17 create.c \
18 destroy.c \
19 start.c \
20 stop.c \
21 execute.c \
22 monitor.c monitor.h \
23 kill.c \
24 freezer.c \
25 checkpoint.c \
26 restart.c \
27 version.c \
28 cgroup.c cgroup.h \
29 lxc.h \
30 lxc_utils.h \
31 lxc_lock.c lxc_lock.h \
32 lxc_namespace.h \
33 lxc_conf.c lxc_conf.h \
34 lxc_list.h \
35 lxc_state.c lxc_state.h \
36 lxc_log.c lxc_log.h \
37 \
38 network.c network.h \
39 nl.c nl.h \
40 rtnl.c rtnl.h \
41 genl.c genl.h
42
43 liblxc_la_LDFLAGS = -release @PACKAGE_VERSION@
44
45 bin_SCRIPTS = \
46 lxc-ps
47
48 bin_PROGRAMS = \
49 lxc-create \
50 lxc-destroy \
51 lxc-stop \
52 lxc-start \
53 lxc-execute \
54 lxc-monitor \
55 lxc-wait \
56 lxc-console \
57 lxc-kill \
58 lxc-freeze \
59 lxc-info \
60 lxc-cgroup \
61 lxc-unfreeze \
62 lxc-checkpoint \
63 lxc-restart \
64 lxc-version
65
66 lxc_create_SOURCES = lxc_create.c lxc_config.c lxc_config.h
67 lxc_create_LDADD = liblxc.la
68
69 lxc_destroy_SOURCES = lxc_destroy.c
70 lxc_destroy_LDADD = liblxc.la
71
72 lxc_start_SOURCES = lxc_start.c
73 lxc_start_LDADD = liblxc.la
74
75 lxc_stop_SOURCES = lxc_stop.c
76 lxc_stop_LDADD = liblxc.la
77
78 lxc_execute_SOURCES = lxc_execute.c lxc_config.c lxc_config.h
79 lxc_execute_LDADD = liblxc.la
80
81 lxc_monitor_SOURCES = lxc_monitor.c
82 lxc_monitor_LDADD = liblxc.la
83
84 lxc_wait_SOURCES = lxc_wait.c
85 lxc_wait_LDADD = liblxc.la
86
87 lxc_console_SOURCES = lxc_console.c
88 lxc_console_LDADD = liblxc.la
89
90 lxc_info_SOURCES = lxc_info.c
91 lxc_info_LDADD = liblxc.la
92
93 lxc_kill_SOURCES = lxc_kill.c
94 lxc_kill_LDADD = liblxc.la
95
96 lxc_freeze_SOURCES = lxc_freeze.c
97 lxc_freeze_LDADD = liblxc.la
98
99 lxc_unfreeze_SOURCES = lxc_unfreeze.c
100 lxc_unfreeze_LDADD = liblxc.la
101
102 lxc_cgroup_SOURCES = lxc_cgroup.c
103 lxc_cgroup_LDADD = liblxc.la
104
105 lxc_checkpoint_SOURCES = lxc_checkpoint.c
106 lxc_checkpoint_LDADD = liblxc.la
107
108 lxc_restart_SOURCES = lxc_restart.c
109 lxc_restart_LDADD = liblxc.la
110
111 lxc_version_SOURCES = lxc_version.c
112 lxc_version_LDADD = liblxc.la