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