diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | src/Makefile | 1 | ||||
-rw-r--r-- | src/grp-locale/Makefile | 29 | ||||
-rw-r--r-- | src/grp-system/Makefile | 1 | ||||
-rw-r--r-- | src/grp-system/grp-utils/Makefile | 32 |
5 files changed, 65 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index f79c43d21c..3817c8d1a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6638,12 +6638,14 @@ sd.CPPFLAGS += $(libsystemd-network.CPPFLAGS) #@src/grp-initprogs/Makefile #@src/grp-initprogs/grp-sleep/Makefile #@src/grp-journal/grp-remote/Makefile +#@src/grp-locale/Makefile #@src/grp-machine/Makefile #@src/grp-machine/grp-import/Makefile #@src/grp-machine/grp-import/libimport/Makefile #@src/grp-resolve/Makefile #@src/grp-resolve/libbasic-dns/Makefile #@src/grp-system/Makefile +#@src/grp-system/grp-utils/Makefile #@src/grp-timedate/Makefile #@src/grp-utils/Makefile #@src/libudev/Makefile diff --git a/src/Makefile b/src/Makefile index babd10d593..4c89439154 100644 --- a/src/Makefile +++ b/src/Makefile @@ -29,6 +29,7 @@ nested.subdirs += grp-coredump nested.subdirs += grp-hostname nested.subdirs += grp-initprogs nested.subdirs += grp-journal +nested.subdirs += grp-locale nested.subdirs += grp-login nested.subdirs += grp-machine nested.subdirs += grp-network diff --git a/src/grp-locale/Makefile b/src/grp-locale/Makefile new file mode 100644 index 0000000000..082d1f8eba --- /dev/null +++ b/src/grp-locale/Makefile @@ -0,0 +1,29 @@ +# -*- Mode: makefile; indent-tabs-mode: t -*- +# +# This file is part of systemd. +# +# Copyright 2010-2012 Lennart Poettering +# Copyright 2010-2012 Kay Sievers +# Copyright 2013 Zbigniew Jędrzejewski-Szmek +# Copyright 2013 David Strauss +# Copyright 2016 Luke Shumaker +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. +include $(dir $(lastword $(MAKEFILE_LIST)))/../../config.mk +include $(topsrcdir)/build-aux/Makefile.head.mk + +nested.subdirs += localectl +nested.subdirs += systemd-localed + +include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-system/Makefile b/src/grp-system/Makefile index b4bff093f6..482fbb5670 100644 --- a/src/grp-system/Makefile +++ b/src/grp-system/Makefile @@ -23,6 +23,7 @@ include $(dir $(lastword $(MAKEFILE_LIST)))/../../config.mk include $(topsrcdir)/build-aux/Makefile.head.mk +nested.subdirs += grp-utils nested.subdirs += libcore nested.subdirs += systemctl nested.subdirs += systemd diff --git a/src/grp-system/grp-utils/Makefile b/src/grp-system/grp-utils/Makefile new file mode 100644 index 0000000000..2c8cc75a7c --- /dev/null +++ b/src/grp-system/grp-utils/Makefile @@ -0,0 +1,32 @@ +# -*- Mode: makefile; indent-tabs-mode: t -*- +# +# This file is part of systemd. +# +# Copyright 2010-2012 Lennart Poettering +# Copyright 2010-2012 Kay Sievers +# Copyright 2013 Zbigniew Jędrzejewski-Szmek +# Copyright 2013 David Strauss +# Copyright 2016 Luke Shumaker +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. +include $(dir $(lastword $(MAKEFILE_LIST)))/../../../config.mk +include $(topsrcdir)/build-aux/Makefile.head.mk + +nested.subdirs += systemd-analyze +nested.subdirs += systemd-delta +nested.subdirs += systemd-fstab-generator +nested.subdirs += systemd-run +nested.subdirs += systemd-sysv-generator + +include $(topsrcdir)/build-aux/Makefile.tail.mk |