diff options
author | Daniel Mack <daniel@zonque.org> | 2015-01-15 13:56:44 +0100 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-01-15 14:08:05 +0100 |
commit | f3c4724635951c5b8a2b3f3c3f25798ce4d290cd (patch) | |
tree | 3d4e5cf5ff7b96df550e1d63af293e1564d50fca /Makefile.am | |
parent | 835214146b60edfcec00075558ccc4238cc1ffe4 (diff) |
bus-proxy: factor out code for driver handling and message synthesis
Move synthesize_*() into synthesize.c and bus_proxy_process_driver() into
driver.c for better code separation.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 520c4e944e..4fa454ed95 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2676,7 +2676,11 @@ systemd_run_LDADD = \ systemd_bus_proxyd_SOURCES = \ src/bus-proxyd/bus-proxyd.c \ src/bus-proxyd/bus-xml-policy.c \ - src/bus-proxyd/bus-xml-policy.h + src/bus-proxyd/bus-xml-policy.h \ + src/bus-proxyd/driver.c \ + src/bus-proxyd/driver.h \ + src/bus-proxyd/synthesize.c \ + src/bus-proxyd/synthesize.h systemd_bus_proxyd_LDADD = \ libsystemd-internal.la \ |