makefile.unix: Dependency on libraries

The binaries should have dependency on related libraries only.
For example, 'vwebp' sould not depend on libpng, libjpeg etc.

Change-Id: I517b7ae6a9092d5de891b46d0e75d07d91548e93
This commit is contained in:
Urvang Joshi 2012-11-21 12:12:29 -08:00
parent dca84219ec
commit 2e7f6e8ef2

View File

@ -11,10 +11,14 @@
#### Customizable part #### #### Customizable part ####
# These flag assume you have libpng and libjpeg installed. If not, either # These flags assume you have libpng, libjpeg, libtiff and libgif installed. If
# follow below install instructions or just comment out the next lines. # not, either follow the install instructions below or just comment out the next
# four lines.
EXTRA_FLAGS= -DWEBP_HAVE_PNG -DWEBP_HAVE_JPEG -DWEBP_HAVE_TIFF EXTRA_FLAGS= -DWEBP_HAVE_PNG -DWEBP_HAVE_JPEG -DWEBP_HAVE_TIFF
EXTRA_LIBS= -lpng -ltiff -ljpeg -lz DWEBP_LIBS= -lpng -lz
CWEBP_LIBS= $(DWEBP_LIBS) -ljpeg -ltiff
GIF_LIBS = -lgif
ifeq ($(strip $(shell uname)), Darwin) ifeq ($(strip $(shell uname)), Darwin)
# Work around a problem linking tables marked as common symbols, # Work around a problem linking tables marked as common symbols,
# cf., src/enc/yuv.[hc] # cf., src/enc/yuv.[hc]
@ -26,7 +30,6 @@ ifeq ($(strip $(shell uname)), Darwin)
else else
GL_LIBS = -lglut -lGL GL_LIBS = -lglut -lGL
endif endif
GIF_LIBS = -lgif
# To install libraries on Mac OS X: # To install libraries on Mac OS X:
@ -205,7 +208,9 @@ examples/vwebp: examples/vwebp.o
examples/webpmux: examples/webpmux.o examples/webpmux: examples/webpmux.o
examples/cwebp: src/libwebp.a examples/cwebp: src/libwebp.a
examples/cwebp: EXTRA_LIBS += $(CWEBP_LIBS)
examples/dwebp: examples/libexample_util.a src/libwebp.a examples/dwebp: examples/libexample_util.a src/libwebp.a
examples/dwebp: EXTRA_LIBS += $(DWEBP_LIBS)
examples/gif2webp: examples/libexample_util.a src/mux/libwebpmux.a src/libwebp.a examples/gif2webp: examples/libexample_util.a src/mux/libwebpmux.a src/libwebp.a
examples/gif2webp: EXTRA_LIBS += $(GIF_LIBS) examples/gif2webp: EXTRA_LIBS += $(GIF_LIBS)
examples/vwebp: examples/libexample_util.a src/demux/libwebpdemux.a examples/vwebp: examples/libexample_util.a src/demux/libwebpdemux.a