mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
74412dbf88
Drop the logrotate file because Apache manages the logs Drop the systemd configuration because we run in Apache Import json_encode_binary from ipalib Fix Requires Reviewed-By: Nathaniel McCallum <npmccallum@redhat.com>
38 lines
518 B
Makefile
38 lines
518 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
etcdir = $(IPA_SYSCONF_DIR)
|
|
etc_DATA = \
|
|
ipa-smartproxy.conf \
|
|
$(NULL)
|
|
|
|
appdir = $(IPA_DATA_DIR)/smartproxy
|
|
app_DATA = \
|
|
ipa-smartproxy.py \
|
|
$(NULL)
|
|
|
|
SUBDIRS = \
|
|
man \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(app_DATA) \
|
|
$(etc_DATA) \
|
|
$(rotate_DATA) \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
aclocal.m4 \
|
|
configure \
|
|
install-sh \
|
|
missing \
|
|
Makefile.in \
|
|
$(NULL)
|