-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.am
More file actions
37 lines (31 loc) · 739 Bytes
/
Copy pathMakefile.am
File metadata and controls
37 lines (31 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# **************************************************************************
noinst_LTLIBRARIES = libmpeg2enc.la
# Remove any linklibraries detected by configure, as they are not
# needed in the submodules -- only in the toplevel libsimage build.
LIBS =
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
MPEG2ENCSOURCES = \
api.c api.h \
conform.c \
fdctref.c \
global.h \
idct.c \
motion.c \
mpeg2enc.h \
predict.c \
putbits.c \
puthdr.c \
putmpg.c \
putpic.c \
putseq.c putseq.h \
putvlc.c \
quantize.c \
ratectl.c \
readpic.c \
stats.c \
transfrm.c \
vlc.h \
writepic.c
libmpeg2enc_la_SOURCES = \
$(MPEG2ENCSOURCES)
# EOF **********************************************************************