aboutsummaryrefslogtreecommitdiffstats
path: root/tools/vtpm_manager/Makefile
blob: dc90eb89929d5860e3a4cf98f0bd2fb6af1b8866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
XEN_ROOT = ../..

# Base definitions and rules
include $(XEN_ROOT)/tools/vtpm_manager/Rules.mk

SUBDIRS		= crypto tcs util manager migration
OPENSSL_HEADER	= /usr/include/openssl/crypto.h

.PHONY: all clean install
all clean install: %: subdirs-%

.PHONY: mrproper
mrproper:
	@set -e; for subdir in $(SUBDIRS); do \
		$(MAKE) -C $$subdir $@; \
	done