summaryrefslogtreecommitdiff
path: root/tui/Makefile.am
blob: e986367a32aa9852e81c51b7ffe0acbefbb9bd0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
if BUILD_NMTUI

SUBDIRS = newt .

AM_CPPFLAGS= \
	-I$(top_srcdir) \
	-I$(top_srcdir)/include \
	-I$(top_builddir)/include \
	-I$(top_srcdir)/libnm-util \
	-I$(top_builddir)/libnm-util \
	-I$(top_srcdir)/libnm-glib \
	-I$(srcdir)/newt \
	$(GLIB_CFLAGS) \
	$(NEWT_CFLAGS) \
	$(DBUS_CFLAGS) \
	$(GUDEV_CFLAGS) \
	-DLOCALEDIR=\""$(localedir)"\" \
	$(NULL)

bin_PROGRAMS = nmtui
links = nmtui-edit nmtui-connect nmtui-hostname

install-exec-hook:
	for link in $(links); do \
		ln -f $(DESTDIR)$(bindir)/nmtui $(DESTDIR)$(bindir)/$$link; \
	done

uninstall-hook:
	for link in $(links); do \
		rm -f $(DESTDIR)$(bindir)/$$link; \
	done

nmtui_SOURCES = \
	nmtui.c \
	nmtui.h \
	nmtui-connect.c \
	nmtui-connect.h \
	nmtui-edit.c \
	nmtui-edit.h \
	nmtui-hostname.c \
	nmtui-hostname.h \
	\
	nm-editor-bindings.c \
	nm-editor-bindings.h \
	nm-editor-utils.c \
	nm-editor-utils.h \
	nm-ui-utils.c \
	nm-ui-utils.h \
	\
	nmt-address-list.c \
	nmt-address-list.h \
	nmt-connect-connection-list.c \
	nmt-connect-connection-list.h \
	nmt-device-entry.c \
	nmt-device-entry.h \
	nmt-edit-connection-list.c \
	nmt-edit-connection-list.h \
	nmt-editor-page.c \
	nmt-editor-page.h \
	nmt-editor.c \
	nmt-editor.h \
	nmt-ip-entry.c \
	nmt-ip-entry.h \
	nmt-mac-entry.c \
	nmt-mac-entry.h \
	nmt-mtu-entry.c \
	nmt-mtu-entry.h \
	nmt-page-bond.c \
	nmt-page-bond.h \
	nmt-page-bridge.c \
	nmt-page-bridge.h \
	nmt-page-bridge-port.c \
	nmt-page-bridge-port.h \
	nmt-page-device.c \
	nmt-page-device.h \
	nmt-page-ethernet.c \
	nmt-page-ethernet.h \
	nmt-page-grid.c \
	nmt-page-grid.h \
	nmt-page-infiniband.c \
	nmt-page-infiniband.h \
	nmt-page-ip4.c \
	nmt-page-ip4.h \
	nmt-page-ip6.c \
	nmt-page-ip6.h \
	nmt-page-main.c \
	nmt-page-main.h \
	nmt-page-team.c \
	nmt-page-team.h \
	nmt-page-team-port.c \
	nmt-page-team-port.h \
	nmt-page-vlan.c \
	nmt-page-vlan.h \
	nmt-page-wifi.c \
	nmt-page-wifi.h \
	nmt-password-dialog.c \
	nmt-password-dialog.h \
	nmt-password-fields.c \
	nmt-password-fields.h \
	nmt-route-editor.c \
	nmt-route-editor.h \
	nmt-route-entry.c \
	nmt-route-entry.h \
	nmt-route-table.c \
	nmt-route-table.h \
	nmt-secret-agent.c \
	nmt-secret-agent.h \
	nmt-slave-list.c \
	nmt-slave-list.h \
	nmt-utils.c \
	nmt-utils.h \
	nmt-widget-list.c \
	nmt-widget-list.h \
	$(NULL)

nmtui_LDADD = \
	$(top_builddir)/libnm-util/libnm-util.la \
	$(top_builddir)/libnm-glib/libnm-glib.la \
	$(builddir)/newt/libnmt-newt.a \
	$(GUDEV_LIBS) \
	$(DBUS_LIBS) \
	$(NEWT_LIBS) \
	$(GLIB_LIBS) \
	$(NULL)

endif