mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-12 22:14:29 +02:00
build: remove libwebpmux from default targets/config
the extended file format is still under development and related libs/binaries are not fit for release configure: --enable/disable-libwebpmux; default is disabled. makefile.unix: src/mux/libwebpmux.a and examples/webpmux must be explicitly specified Makefile.vc: $(DIRLIB)\libwebpmux.lib and $(DIRBIN)\webpmux.exe must be explicitly specified Change-Id: I8246746b256010dd2a2e4de58291222d7eaf0457
This commit is contained in:
@ -203,13 +203,14 @@ UTILS_OBJS = \
|
||||
LIBWEBP_OBJS = $(DEC_OBJS) $(DSP_OBJS) $(ENC_OBJS) $(UTILS_OBJS) $(LIBWEBP_OBJS)
|
||||
LIBWEBPMUX_OBJS = $(MUX_OBJS) $(LIBWEBPMUX_OBJS)
|
||||
|
||||
OUT_LIBS = $(LIBWEBP) $(LIBWEBPMUX)
|
||||
OUT_EXAMPLES = $(DIRBIN)\cwebp.exe $(DIRBIN)\dwebp.exe $(DIRBIN)\webpmux.exe
|
||||
OUT_LIBS = $(LIBWEBP)
|
||||
OUT_EXAMPLES = $(DIRBIN)\cwebp.exe $(DIRBIN)\dwebp.exe
|
||||
|
||||
all: $(OUT_LIBS) $(OUT_EXAMPLES)
|
||||
$(DIRBIN)\cwebp.exe: $(DIROBJ)\examples\cwebp.obj
|
||||
$(DIRBIN)\dwebp.exe: $(DIROBJ)\examples\dwebp.obj
|
||||
$(DIRBIN)\webpmux.exe: $(DIROBJ)\examples\webpmux.obj $(LIBWEBPMUX)
|
||||
$(DIRBIN)\webpmux.exe: $(EX_UTIL_OBJS) $(LIBWEBP)
|
||||
$(OUT_EXAMPLES): $(EX_UTIL_OBJS) $(LIBWEBP)
|
||||
|
||||
experimental:
|
||||
|
Reference in New Issue
Block a user