]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/Makefile.am
Header code cleanup
[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 lxc_cgroup.c lxc_cgroup.h \
26 lxc.h \
27 lxc_utils.h \
28 lxc_lock.c lxc_lock.h \
29 lxc_namespace.h \
30 lxc_conf.c lxc_conf.h \
31 lxc_list.h \
32 lxc_state.c lxc_state.h \
33 lxc_log.c lxc_log.h \
34 \
35 network.c network.h \
36 nl.c nl.h \
37 rtnl.c rtnl.h \
38 genl.c genl.h
39
40 liblxc_la_LDFLAGS = -release @PACKAGE_VERSION@
41
42 bin_SCRIPTS = \
43 lxc-ps
44
45 bin_PROGRAMS = \
46 lxc-create \
47 lxc-destroy \
48 lxc-stop \
49 lxc-start \
50 lxc-execute \
51 lxc-monitor \
52 lxc-console \
53 lxc-kill \
54 lxc-freeze \
55 lxc-info \
56 lxc-unfreeze \
57 lxc-priority
58
59 lxc_create_SOURCES = lxc_create.c lxc_config.c lxc_config.h
60 lxc_create_LDADD = liblxc.la
61
62 lxc_destroy_SOURCES = lxc_destroy.c
63 lxc_destroy_LDADD = liblxc.la
64
65 lxc_start_SOURCES = lxc_start.c
66 lxc_start_LDADD = liblxc.la
67
68 lxc_stop_SOURCES = lxc_stop.c
69 lxc_stop_LDADD = liblxc.la
70
71 lxc_execute_SOURCES = lxc_execute.c
72 lxc_execute_LDADD = liblxc.la
73
74 lxc_monitor_SOURCES = lxc_monitor.c
75 lxc_monitor_LDADD = liblxc.la
76
77 lxc_console_SOURCES = lxc_console.c
78 lxc_console_LDADD = liblxc.la
79
80 lxc_info_SOURCES = lxc_info.c
81 lxc_info_LDADD = liblxc.la
82
83 lxc_kill_SOURCES = lxc_kill.c
84 lxc_kill_LDADD = liblxc.la
85
86 lxc_freeze_SOURCES = lxc_freeze.c
87 lxc_freeze_LDADD = liblxc.la
88
89 lxc_unfreeze_SOURCES = lxc_unfreeze.c
90 lxc_unfreeze_LDADD = liblxc.la
91
92 lxc_priority_SOURCES = lxc_priority.c
93 lxc_priority_LDADD = liblxc.la