mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-15 21:39:59 +02:00
move the decoder sourcetree to a sub-location src/dec
to make room for future libs sources also extract the types declaration into its own types.h file Change-Id: I8bae8a323a479a29375cf509792228ae6af51c7a
This commit is contained in:
@ -1,8 +1,11 @@
|
||||
AM_CPPFLAGS = -I$(top_buildir)/src
|
||||
lib_LTLIBRARIES = libwebpdecode.la
|
||||
|
||||
libwebpdecode_la_SOURCES = webp/decode.h webp/vp8.h bits.h vp8i.h yuv.h bits.c dsp.c frame.c quant.c tree.c vp8.c webp.c yuv.c
|
||||
libwebpdecode_la_SOURCES = webp/decode.h webp/vp8.h \
|
||||
dec/bits.h dec/vp8i.h dec/yuv.h dec/bits.c dec/dsp.c dec/frame.c \
|
||||
dec/quant.c dec/tree.c dec/vp8.c dec/webp.c dec/yuv.c
|
||||
libwebpdecode_la_LDFLAGS = -version-info 0:0:0
|
||||
libwebpdecodeinclude_HEADERS = webp/decode.h webp/decode_vp8.h
|
||||
libwebpdecodeincludedir = $(includedir)/webp
|
||||
noinst_HEADERS = bits.h vp8i.h yuv.h
|
||||
|
||||
noinst_HEADERS = dec/bits.h dec/vp8i.h dec/yuv.h
|
||||
|
Reference in New Issue
Block a user