diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-13 17:42:21 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-13 17:42:21 -0400 |
commit | 2762c4a1018fd85d3445e6438d88668a84f63067 (patch) | |
tree | 37cbc4d6407d33ce7158797e004a2c4e64fb9906 /src/grp-machine/systemd-machined | |
parent | b585358da58463ca0e6fa1961e85340f27583f63 (diff) |
tidy
Diffstat (limited to 'src/grp-machine/systemd-machined')
-rw-r--r-- | src/grp-machine/systemd-machined/Makefile | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/grp-machine/systemd-machined/Makefile b/src/grp-machine/systemd-machined/Makefile index 52016c3b5d..66ac0b9275 100644 --- a/src/grp-machine/systemd-machined/Makefile +++ b/src/grp-machine/systemd-machined/Makefile @@ -23,6 +23,19 @@ include $(dir $(lastword $(MAKEFILE_LIST)))/../../../config.mk include $(topsrcdir)/build-aux/Makefile.head.mk +systemd_machined_SOURCES = \ + $(_libmachine_core_la_SOURCES) \ + src/machine/machined.c \ + src/machine/machined.h + +systemd_machined_LDADD = \ + libsystemd-internal.la \ + libshared.la \ + libbasic.la + +rootlibexec_PROGRAMS += \ + systemd-machined + _libmachine_core_la_SOURCES = \ src/machine/machine.c \ src/machine/machine.h \ @@ -34,18 +47,12 @@ _libmachine_core_la_SOURCES = \ src/machine/operation.c \ src/machine/operation.h -systemd_machined_SOURCES = \ +test_machine_tables_SOURCES = \ $(_libmachine_core_la_SOURCES) \ - src/machine/machined.c \ - src/machine/machined.h - -systemd_machined_LDADD = \ - libsystemd-internal.la \ - libshared.la \ - libbasic.la + src/machine/test-machine-tables.c -rootlibexec_PROGRAMS += \ - systemd-machined +tests += \ + test-machine-tables nodist_systemunit_DATA += \ units/systemd-machined.service @@ -77,11 +84,4 @@ polkitpolicy_in_files += \ EXTRA_DIST += \ units/systemd-machined.service.in -test_machine_tables_SOURCES = \ - $(_libmachine_core_la_SOURCES) \ - src/machine/test-machine-tables.c - -tests += \ - test-machine-tables - include $(topsrcdir)/build-aux/Makefile.tail.mk |