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:
Pascal Massimino
2011-01-06 07:25:43 -08:00
parent a9b3eab6fd
commit 6421a7a4fb
22 changed files with 17747 additions and 23160 deletions

View File

@ -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