Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptokatz committed Dec 6, 2018
1 parent 997b74c commit 18acf8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ all-debug: build-debug

cmake-release:
mkdir -p build/release
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../..
cd build/release && cmake ../..

build-release: cmake-release
cd build/release && $(MAKE)

build-static:
mkdir -p build/static
cd build/static && cmake -D CMAKE_BUILD_TYPE=Release ../..
cd build/static && cmake ../..
cd build/static && $(MAKE) SHARED=0 CC='gcc -static'

test-release: build-release
Expand Down

0 comments on commit 18acf8d

Please sign in to comment.