Skip to content

Commit

Permalink
[Makefile] refs fibercrypto#38 Separe sentence by step
Browse files Browse the repository at this point in the history
  • Loading branch information
Maykel Arias Torres committed Aug 28, 2019
1 parent cf820ca commit c4a744f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,11 @@ install-deps-skyapi-Darwin:
(cd deps && wget http://curl.haxx.se/download/curl-7.58.0.tar.gz && tar -xf curl-7.58.0.tar.gz && cd curl-7.58.0/ && mkdir build && cd build && cmake -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl .. && make && sudo make install)

install-deps-skyapi-MSYS_NT-10.0:
(cd deps && wget http://curl.haxx.se/download/curl-7.58.0.tar.gz && tar -xf curl-7.58.0.tar.gz && cd curl-7.58.0/ && mkdir build && cd build && cmake -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ .. && make && sudo make install)
cd deps && wget http://curl.haxx.se/download/curl-7.58.0.tar.gz
cd deps && tar -xf curl-7.58.0.tar.gz
cd deps/curl-7.58.0/ && mkdir build && cd build && cmake -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ ..
cd deps/curl-7.58.0/build && make
cd deps/curl-7.58.0/build && sudo make install

install-deps-libc: install-deps-libc-$(UNAME_S) ## Install deps for libc

Expand Down

0 comments on commit c4a744f

Please sign in to comment.