corda/sgx-jvm/noop-enclave/Makefile
2017-06-15 11:17:11 +01:00

15 lines
200 B
Makefile

.PHONY: all
all: build/noop-enclave.so
build:
mkdir -p build
build/Makefile: | build
cd build/ && cmake ..
build/noop-enclave.so: build/Makefile
$(MAKE) -C $(<D) VERBOSE=1
clean:
rm -rf build