]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/Makefile.am
add long options step1
[mirror_lxc.git] / src / lxc / Makefile.am
1 INCLUDES= -I$(top_srcdir)/src -DLXCPATH="\"@LXCPATH@\"" \
2 -DLXCBINDIR="\"$(bindir)\"" \
3 -DLXCLIBEXECDIR="\"$(libexecdir)\""
4 AM_LDFLAGS= -lutil
5 lib_LTLIBRARIES = liblxc.la
6 pkginclude_HEADERS = \
7 start.h \
8 error.h \
9 monitor.h \
10 utils.h \
11 namespace.h \
12 lock.h \
13 lxc.h \
14 cgroup.h \
15 conf.h \
16 list.h \
17 log.h \
18 state.h
19
20
21 liblxc_la_SOURCES = \
22 arguments.c arguments.h \
23 create.c \
24 destroy.c \
25 start.c \
26 stop.c \
27 monitor.c monitor.h \
28 console.c \
29 freezer.c \
30 checkpoint.c \
31 restart.c \
32 version.c \
33 error.h error.c \
34 parse.c parse.h \
35 cgroup.c cgroup.h \
36 lxc.h \
37 lxc_utils.h \
38 lock.c lock.h \
39 namespace.h \
40 conf.c conf.h \
41 list.h \
42 state.c state.h \
43 log.c log.h \
44 \
45 network.c network.h \
46 nl.c nl.h \
47 rtnl.c rtnl.h \
48 genl.c genl.h \
49 \
50 mainloop.c mainloop.h \
51 af_unix.c af_unix.h \
52 \
53 cr_plugin_columbia.c lxc_plugin.h
54
55 liblxc_la_LDFLAGS = -release @PACKAGE_VERSION@
56
57 bin_SCRIPTS = \
58 lxc-ps \
59 lxc-netstat \
60 lxc-ls \
61 lxc-checkconfig \
62 lxc-setcap
63
64 bin_PROGRAMS = \
65 lxc-unshare \
66 lxc-create \
67 lxc-destroy \
68 lxc-stop \
69 lxc-start \
70 lxc-execute \
71 lxc-monitor \
72 lxc-wait \
73 lxc-console \
74 lxc-freeze \
75 lxc-info \
76 lxc-cgroup \
77 lxc-unfreeze \
78 lxc-checkpoint \
79 lxc-restart \
80 lxc-version
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 confile.c confile.h
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 confile.c confile.h
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
132
133 lxc_version_SOURCES = lxc_version.c
134 lxc_version_LDADD = liblxc.la
135
136 install-exec-local:
137 @mkdir -p $(DESTDIR)@LXCPATH@