Skip to content

Commit

Permalink
[Makefile] refs fibercrypto#38 Added tags `install-deps-skyapi-MSYS_N…
Browse files Browse the repository at this point in the history
…T-10.0`
  • Loading branch information
Maykel Arias Torres committed Jun 13, 2019
1 parent 522eaef commit bd4fb86
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ install-deps-skyapi-Darwin:
brew install openssl curl uncrustify || true
(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:

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

install-deps-skyapi: install-deps-skyapi-$(UNAME_S) ## Install skyapi(libcurl based) library.
Expand All @@ -204,9 +206,12 @@ install-deps-libc-Darwin: configure-build ## Install locally dependencies for te
brew install check

install-deps-libc-MSYS_NT-10.0: ## Install deps on Windows
# wget -c https://github.com/libcheck/check/releases/download/0.12.0/check-0.12.0.tar.gz
# tar -xvf check-0.12.0.tar.gz
# cd check-0.12.0 && ./configure --disable-static && make && make install
wget -c https://github.com/libcheck/check/releases/download/0.12.0/check-0.12.0.tar.gz
tar -xvf check-0.12.0.tar.gz
cd check-0.12.0 && ./configure
cd check-0.12.0 && make
cd check-0.12.0 && make check
cd check-0.12.0 && make install

install-deps: install-deps-libc install-deps-skyapi ## Install deps for libc and skyapi

Expand Down

0 comments on commit bd4fb86

Please sign in to comment.