mirror of
https://github.com/samsapti/bachelor-project.git
synced 2024-11-22 12:57:56 +00:00
15 lines
339 B
Makefile
15 lines
339 B
Makefile
all: patch deps
|
|
$(MAKE) -C src/MP_SPDZ all
|
|
|
|
patch:
|
|
-git -C src/MP_SPDZ apply ../../config.patch
|
|
|
|
deps: patch
|
|
sudo apt install automake build-essential clang cmake git libntl-dev \
|
|
libsodium-dev libssl-dev libtool m4 python3 texinfo yasm
|
|
$(MAKE) -C src/MP_SPDZ boost
|
|
$(MAKE) -C src/MP_SPDZ libote mpir
|
|
|
|
%:
|
|
$(MAKE) -C src/MP_SPDZ $@
|