mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
d5683726d2
Automake manual section 13 What Gets Cleaned says that make maintainer-clean should not remove files necessary for subsequent runs of ./configure. It practically means that all usage of MAINTAINERCLEANFILES were incorrect so I've removed them. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
22 lines
405 B
Makefile
22 lines
405 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
#
|
|
AUTOMAKE_OPTIONS = 1.7 subdir-objects
|
|
|
|
NULL =
|
|
|
|
AM_CFLAGS = $(NULL)
|
|
if HAVE_GCC
|
|
AM_CFLAGS += -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith \
|
|
-Wcast-align -Werror-implicit-function-declaration \
|
|
$(NULL)
|
|
endif
|
|
export AM_CFLAGS
|
|
|
|
SUBDIRS = \
|
|
dnssec \
|
|
ipa-kdb \
|
|
ipa-slapi-plugins \
|
|
ipa-sam \
|
|
ipa-otpd \
|
|
$(NULL)
|