Add LDFLAGS_POST to the shared library target.

Originally committed to SVN as r5284.
This commit is contained in:
Amar Takhar 2011-02-03 18:09:08 +00:00
parent d59e0dd075
commit 283eff76ac
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ $(LIB) : $(OBJ)
ifdef LIB_SHARED
LIB_SHARED_FULL = $(LIB_SHARED).$(LIB_VERSION)
$(LIB_SHARED) : $(OBJ)
$(BIN_CXX) $(LIB_SHARED_LINK) $(LDFLAGS) $(OBJ) -o $(LIB_SHARED_FULL)
$(BIN_CXX) $(LIB_SHARED_LINK) $(LDFLAGS) $(OBJ) $(LDFLAGS_POST) -o $(LIB_SHARED_FULL)
$(BIN_LN) -sf $(LIB_SHARED_FULL) $(LIB_SHARED)
CLEANFILES+= $(LIB_SHARED_FULL)