~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib/example/yaf/yafcore/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  libyafshared - Makefile.am
 
2
 
 
3
INCLUDES                =       -I../../include $(all_includes)
 
4
 
 
5
EXTRA_DIST              =       PROTOCOL.v01 yafCommand.defs yafRuntime.defs
 
6
 
 
7
 
 
8
lib_LTLIBRARIES         =       libyafcore.la
 
9
 
 
10
noinst_HEADERS          =       commandTableYAF.h multiReader.h \
 
11
                                runtimeTableYAF.h \
 
12
                                outputDecoder.h \
 
13
                                commandLine.h \
 
14
                                commandTable.h lineStack.h \
 
15
                                parser.h
 
16
 
 
17
 
 
18
libyafcore_la_SOURCES   =       buffer.cpp \
 
19
                                lineStack.cpp \
 
20
                                commandLine.cpp \
 
21
                                parser.cpp \
 
22
                                outputInterface.cpp \
 
23
                                inputInterface.cpp \
 
24
                                commandTable.cpp \
 
25
                                commandTableYAF.cpp \
 
26
                                runtimeTableYAF.cpp \
 
27
                                inputDecoder.cpp \
 
28
                                outputDecoder.cpp \
 
29
                                yaf_control.cpp \
 
30
                                multiReader.cpp
 
31
 
 
32
libyafcore_la_LDFLAGS   =       $(all_libraries) \
 
33
                                -module
 
34
 
 
35
libyafcore_la_LIBADD    =       $(THIS_LIB_LIBS)
 
36
 
 
37
 
 
38
 
 
39
 
 
40
yafcoredir              =       $(includedir)/$(THIS_LIB_NAME)/util/yaf/yafcore
 
41
 
 
42
yafcore_HEADERS         =       inputInterface.h outputInterface.h \
 
43
                                buffer.h inputDecoder.h yaf_control.h
 
44
                                
 
45
 
 
46
 
 
47
 
 
48
 
 
49
 
 
50
 
 
51
 
 
52
 
 
53