mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 18:01:23 -06:00
042fb11fa1
- Removing shebangs (#!) from a bunch of python libraries - Don't use a variable name in init scripts for the lock file - Keep the init script name consistent with the binary name, so renamed ipa-kpasswd.init to ipa_kpasswd.init - Add status option to the init scripts - Move most python scripts out of /usr/share/ipa and into the python site-packages directories (ipaserver and ipaclient) - Remove unnecessary sys.path.append("/usr/share/ipa") - Fix the license string in the spec files - Rename ipa-webgui to ipa_webgui everywhere - Fix a couple of issues reported by pychecker in ipa-python
51 lines
916 B
Makefile
51 lines
916 B
Makefile
NULL =
|
|
|
|
INCLUDES = \
|
|
-I. \
|
|
-I$(srcdir) \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DBINDIR=\""$(bindir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
$(LDAP_CFLAGS) \
|
|
$(KRB5_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(NULL)
|
|
|
|
sbin_PROGRAMS = \
|
|
ipa_kpasswd \
|
|
$(NULL)
|
|
|
|
ipa_kpasswd_SOURCES = \
|
|
ipa_kpasswd.c \
|
|
$(NULL)
|
|
|
|
ipa_kpasswd_LDADD = \
|
|
$(LDAP_LIBS) \
|
|
$(KRB5_LIBS) \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
ipa_kpasswd.init \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|
|
|
|
initdir=$(sysconfdir)/rc.d/init.d
|
|
|
|
install-data-hook: ipa_kpasswd.init
|
|
|
|
if test '!' -d $(DESTDIR)$(initdir); then \
|
|
$(mkinstalldirs) $(DESTDIR)$(initdir); \
|
|
chmod 755 $(DESTDIR)$(initdir); \
|
|
fi
|
|
|
|
$(INSTALL_SCRIPT) $(srcdir)/ipa_kpasswd.init $(DESTDIR)$(initdir)/ipa_kpasswd
|
|
|
|
uninstall-hook:
|
|
rm -f $(DESTDIR)$(initdir)/ipa_kpasswd
|