Skip to content

Commit

Permalink
Fixed type in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi688 committed Feb 5, 2022
1 parent 040204e commit 97a6820
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 @@ -146,11 +146,11 @@ lib-static-release: $(TARGET_STATIC_LIB)

lib-dynamic: lib-dynamic-release
lib-dynamic-debug: DEFINES += $(DEBUG_DEFINES) -DBUILD_DYNAMIC_LIBRARY
lib-dynamic-debug: __STATIC_LIB_COMMAND = lib-statc-debug
lib-dynamic-debug: __STATIC_LIB_COMMAND = lib-static-debug
lib-dynamic-debug: COMPILER_FLAGS += -g -fPIC
lib-dynamic-debug: $(TARGET_DYNAMIC_LIB)
lib-dynamic-release: DEFINES += $(RELEASE_DEFINES) -DBUILD_DYNAMIC_LIBRARY
lib-dynamic-release: __STATIC_LIB_COMMAND = lib-statc-release
lib-dynamic-release: __STATIC_LIB_COMMAND = lib-static-release
lib-dynamic-release: COMPILER_FLAGS += -fPIC
lib-dynamic-release: $(TARGET_DYNAMIC_LIB)

Expand Down

0 comments on commit 97a6820

Please sign in to comment.