mirror of
https://github.com/corda/corda.git
synced 2024-12-26 16:11:12 +00:00
c3f5ca41e1
* ENT-319 Enclave to help test Intel signing key * Update build files to allow for release builds * Strip debug information from release binaries * Move sign_helper and update references * Remove paragraph from README * Two dev modes (simulation and HSM) * Update make files to take mode and single build directory * Update reference to self-sign key * Build script: from_clean.sh * Fix bad ref to docker-minimal
20 lines
259 B
Makefile
20 lines
259 B
Makefile
MODE ?= Debug # or Release
|
|
|
|
.PHONY: all clean
|
|
|
|
all: build/Makefile
|
|
$(MAKE) -C $(<D) help
|
|
exit 1
|
|
|
|
build:
|
|
mkdir -p build
|
|
|
|
build/Makefile: | build
|
|
cd build/ && cmake -DCMAKE_BUILD_TYPE=$(MODE) ..
|
|
|
|
%: build/Makefile
|
|
$(MAKE) -C $(<D) $@
|
|
|
|
clean:
|
|
rm -rf build
|