X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=Makefile.am;h=0213c3846dca0798713bf2b001265714e6d8b05e;hp=479f7e2c0e501b21ee7425e7035281598b5ebd52;hb=01b85ba3add49db47a75a26c80a55d6af24de524;hpb=326cb4061a7d6ec4107f298b6f947d645512ad76 diff --git a/Makefile.am b/Makefile.am index 479f7e2c0..0213c3846 100644 --- a/Makefile.am +++ b/Makefile.am @@ -297,10 +297,14 @@ define install-relative-aliases done endef +install-touch-usr-hook: + touch -c $(DESTDIR)/$(prefix) + INSTALL_EXEC_HOOKS += \ install-target-wants-hook \ install-directories-hook \ - install-aliases-hook + install-aliases-hook \ + install-touch-usr-hook # ------------------------------------------------------------------------------ AM_V_M4 = $(AM_V_M4_$(V)) @@ -509,6 +513,9 @@ dist_userunit_DATA = \ nodist_userunit_DATA = \ units/user/systemd-exit.service +dist_systempreset_DATA = \ + system-preset/90-systemd.preset + EXTRA_DIST += \ units/getty@.service.m4 \ units/serial-getty@.service.m4 \ @@ -1233,7 +1240,9 @@ tests += \ test-tables \ test-device-nodes \ test-xml \ - test-architecture + test-architecture \ + test-socket-util \ + test-fdset EXTRA_DIST += \ test/sched_idle_bad.service \ @@ -1337,12 +1346,24 @@ test_utf8_SOURCES = \ test_utf8_LDADD = \ libsystemd-shared.la +test_fdset_SOURCES = \ + src/test/test-fdset.c + +test_fdset_LDADD = \ + libsystemd-core.la + test_util_SOURCES = \ src/test/test-util.c test_util_LDADD = \ libsystemd-core.la +test_socket_util_SOURCES = \ + src/test/test-socket-util.c + +test_socket_util_LDADD = \ + libsystemd-core.la + test_ring_SOURCES = \ src/test/test-ring.c