*nix: Fixed linking tools against system libraries

This commit is contained in:
Cesare Falco 2015-01-29 12:55:14 +01:00
parent 916aaee5b6
commit a49eee8559

View File

@ -756,6 +756,7 @@ INCPATH += -I$(3RDPARTY)/zlib
ZLIB = $(OBJ)/libz.a ZLIB = $(OBJ)/libz.a
else else
LIBS += -lz LIBS += -lz
BASELIBS += -lz
ZLIB = ZLIB =
endif endif
@ -766,6 +767,7 @@ FLAC_LIB = $(OBJ)/libflac.a
# $(OBJ)/libflac++.a # $(OBJ)/libflac++.a
else else
LIBS += -lFLAC LIBS += -lFLAC
BASELIBS += -lFLAC
FLAC_LIB = FLAC_LIB =
endif endif