mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
0d37619db4
Translations are need for client as well. This move is done to remove dependency between client and install subdirectories. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-By: Stanislav Laznicka <slaznick@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
#
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
SUBDIRS = \
|
|
certmonger \
|
|
conf \
|
|
html \
|
|
migration \
|
|
share \
|
|
ui \
|
|
tools \
|
|
updates \
|
|
restart_scripts \
|
|
wsgi \
|
|
oddjob \
|
|
$(NULL)
|
|
|
|
install-exec-local:
|
|
mkdir -p $(DESTDIR)$(localstatedir)/lib/ipa/sysrestore
|
|
chmod 700 $(DESTDIR)$(localstatedir)/lib/ipa/sysrestore
|
|
mkdir -p $(DESTDIR)$(localstatedir)/lib/ipa/sysupgrade
|
|
chmod 700 $(DESTDIR)$(localstatedir)/lib/ipa/sysupgrade
|
|
mkdir -p $(DESTDIR)$(localstatedir)/lib/ipa/pki-ca
|
|
chmod 755 $(DESTDIR)$(localstatedir)/lib/ipa/pki-ca
|
|
|
|
uninstall-local:
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/sysrestore
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/sysupgrade
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa
|
|
|
|
DISTCLEANFILES = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
intltool-*.in \
|
|
compile \
|
|
configure \
|
|
COPYING \
|
|
INSTALL \
|
|
install-sh \
|
|
missing \
|
|
mkinstalldirs \
|
|
config.guess \
|
|
ltmain.sh \
|
|
config.sub \
|
|
depcomp \
|
|
Makefile.in \
|
|
config.h.* \
|
|
aclocal.m4 \
|
|
version.m4 \
|
|
ipa-client.spec \
|
|
py-compile \
|
|
$(NULL)
|