mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

Recent make's complain about this here: Makefile.am:34: warning: .PHONY was already defined in condition WITH_SELINUX, which is included in condition TRUE ... Makefile.am:28: ... '.PHONY' previously defined here This patch fixes this issue. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
34 lines
562 B
Makefile
34 lines
562 B
Makefile
#
|
|
# Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
SUBDIRS = \
|
|
etc \
|
|
include \
|
|
man \
|
|
samples \
|
|
src \
|
|
tests
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
CHANGES \
|
|
INSTALL \
|
|
LICENSE \
|
|
COPYING \
|
|
README \
|
|
autogen.sh
|
|
|
|
if WITH_SELINUX
|
|
selinux-install selinux-uninstall:
|
|
@cd src/selinux && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
endif
|
|
|
|
python-install python-uninstall:
|
|
@cd samples && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
@cd src/swtpm_setup && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
.PHONY: python-install python-uninstall selinux-install selinux-uninstall
|