# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

build:
	$(MAKE) -C enc
	$(MAKE) -C host

clean:
	$(MAKE) -C enc clean
	$(MAKE) -C host clean

run:
	host/file-encryptorhost testfile ./enc/file-encryptorenc.signed.so

simulate:
	host/file-encryptorhost testfile ./enc/file-encryptorenc.signed.so --simulate

