diff options
author | Dan Winship <danw@gnome.org> | 2014-07-22 17:55:13 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-07-30 15:56:19 -0400 |
commit | 3d25d70461b7ed07c8b998620975daf149dc60d0 (patch) | |
tree | d22443121a8aeed393e6f3f341f335242475fff1 /Makefile.am | |
parent | 25dac5760b66794a8bfc559fa84a9db2c53b9eef (diff) | |
download | NetworkManager-3d25d70461b7ed07c8b998620975daf149dc60d0.tar.gz |
clients: reorganize source tree, put all the installed clients together
Create a new clients/ subdirectory at the top level, and move cli/ and
tui/ into it, as well as nm-online.c (which was previously in test/,
which made no sense).
cli/ was split into two subdirectories, src/ and completion/. While
this does simplify things (given that the completion file and the
binary both need to be named "nmcli"), it bloats the source tree, and
we can work around it by just renaming the completion file at install
time. Then we can combine the two directories into one and just have
it all under clients/cli/.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 97f094d791..ea0bab0f9f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,8 +8,7 @@ SUBDIRS = \ introspection \ src \ callouts \ - cli \ - tui \ + clients \ tools \ policy \ data \ |