summaryrefslogtreecommitdiff
path: root/orkbasecxx/filters
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@cohens.org.il>2009-09-17 15:45:06 +0300
committerTzafrir Cohen <tzafrir@cohens.org.il>2009-10-04 10:48:38 +0200
commit5440c5eeea97a9037da85d42b9bc8376df729e54 (patch)
treed2476f2688978c7b9c2332d53e791c845a22181c /orkbasecxx/filters
parent0e81a660a661c63013894450e6b3ba7569ca933f (diff)
build system changes for newer autotools
* autoconf 2.61 required * bootstrapping: autoreconf -i * pkg-config file added
Diffstat (limited to 'orkbasecxx/filters')
-rw-r--r--orkbasecxx/filters/audiogain/Makefile.am10
-rw-r--r--orkbasecxx/filters/g722codec/Makefile.am4
-rw-r--r--orkbasecxx/filters/gsm/Makefile.am4
-rw-r--r--orkbasecxx/filters/gsm/gsm610/Makefile.am5
-rw-r--r--orkbasecxx/filters/ilbc/Makefile.am4
-rw-r--r--orkbasecxx/filters/ilbc/ilbc/Makefile.am10
6 files changed, 22 insertions, 15 deletions
diff --git a/orkbasecxx/filters/audiogain/Makefile.am b/orkbasecxx/filters/audiogain/Makefile.am
index 2c377b5..2eee8e6 100644
--- a/orkbasecxx/filters/audiogain/Makefile.am
+++ b/orkbasecxx/filters/audiogain/Makefile.am
@@ -1,6 +1,6 @@
-METASOURCES = AUTO
-noinst_LTLIBRARIES = libaudiogain.la
-libaudiogain_la_SOURCES = AudioGain.cpp
+METASOURCES = AUTO
+noinst_LTLIBRARIES = libaudiogain.la
+libaudiogain_la_SOURCES = AudioGain.cpp
-INCLUDES = -I@top_srcdir@
-AM_CXXFLAGS = -D_REENTRANT
+AM_CPPFLAGS = -I$(top_srcdir)
+AM_CXXFLAGS = -D_REENTRANT
diff --git a/orkbasecxx/filters/g722codec/Makefile.am b/orkbasecxx/filters/g722codec/Makefile.am
index 9ff6ccf..9d9f66d 100644
--- a/orkbasecxx/filters/g722codec/Makefile.am
+++ b/orkbasecxx/filters/g722codec/Makefile.am
@@ -1,7 +1,7 @@
METASOURCES = AUTO
SUBDIRS =
noinst_LTLIBRARIES = libg722codec.la
-libg722codec_la_SOURCES = G722Codec.cpp
+libg722codec_la_SOURCES = G722Codec.cpp G722.h G722Codec.h
-INCLUDES = -I@top_srcdir@ -I../..
+INCLUDES = -I$(top_srcdir) -I../..
AM_CXXFLAGS = -D_REENTRANT
diff --git a/orkbasecxx/filters/gsm/Makefile.am b/orkbasecxx/filters/gsm/Makefile.am
index 26be37b..03de1a3 100644
--- a/orkbasecxx/filters/gsm/Makefile.am
+++ b/orkbasecxx/filters/gsm/Makefile.am
@@ -1,7 +1,7 @@
METASOURCES = AUTO
SUBDIRS = gsm610
noinst_LTLIBRARIES = libgsm.la
-libgsm_la_SOURCES = GsmFilters.cpp
+libgsm_la_SOURCES = GsmFilters.cpp GsmFilters.h
-INCLUDES = -I@top_srcdir@ -I./gsm610
+INCLUDES = -I$(top_srcdir) -I$(srcdir)/gsm610
AM_CXXFLAGS = -D_REENTRANT
diff --git a/orkbasecxx/filters/gsm/gsm610/Makefile.am b/orkbasecxx/filters/gsm/gsm610/Makefile.am
index aba1767..6f9490f 100644
--- a/orkbasecxx/filters/gsm/gsm610/Makefile.am
+++ b/orkbasecxx/filters/gsm/gsm610/Makefile.am
@@ -3,7 +3,8 @@ noinst_LTLIBRARIES = libgsm610.la
libgsm610_la_SOURCES = add.c code.c decode.c gsm_create.c gsm_decode.c \
gsm_destroy.c gsm_encode.c gsm_option.c \
long_term.c lpc.c preprocess.c rpe.c \
- short_term.c table.c
+ short_term.c table.c \
+ config.h gsm.h gsm610_priv.h
-INCLUDES = -I@top_srcdir@
+INCLUDES = -I$(top_srcdir)
AM_CFLAGS = -D_REENTRANT
diff --git a/orkbasecxx/filters/ilbc/Makefile.am b/orkbasecxx/filters/ilbc/Makefile.am
index c9a8f58..43fb2da 100644
--- a/orkbasecxx/filters/ilbc/Makefile.am
+++ b/orkbasecxx/filters/ilbc/Makefile.am
@@ -1,7 +1,7 @@
METASOURCES = AUTO
SUBDIRS = ilbc
noinst_LTLIBRARIES = libilbc.la
-libilbc_la_SOURCES = IlbcFilters.cpp
+libilbc_la_SOURCES = IlbcFilters.cpp IlbcFilters.h
-INCLUDES = -I@top_srcdir@ -I./ilbc
+INCLUDES = -I$(top_srcdir) -I$(srcdir)/ilbc
AM_CXXFLAGS = -D_REENTRANT
diff --git a/orkbasecxx/filters/ilbc/ilbc/Makefile.am b/orkbasecxx/filters/ilbc/ilbc/Makefile.am
index 3d6a240..ee34f26 100644
--- a/orkbasecxx/filters/ilbc/ilbc/Makefile.am
+++ b/orkbasecxx/filters/ilbc/ilbc/Makefile.am
@@ -4,7 +4,13 @@ libilbcrfc_la_SOURCES = anaFilter.c iCBSearch.c packing.c \
constants.c gainquant.c iLBC_decode.c StateConstructW.c \
createCB.c getCBvec.c iLBC_encode.c StateSearchW.c doCPLC.c \
helpfun.c syntFilter.c enhancer.c hpInput.c LPCdecode.c \
- iLBC_filter.c hpOutput.c LPCencode.c FrameClassify.c iCBConstruct.c lsf.c
+ iLBC_filter.c hpOutput.c LPCencode.c FrameClassify.c \
+ iCBConstruct.c lsf.c \
+ FrameClassify.h LPCdecode.h LPCencode.h StateConstructW.h \
+ StateSearchW.h anaFilter.h constants.h createCB.h doCPLC.h \
+ enhancer.h filter.h gainquant.h getCBvec.h helpfun.h hpInput.h \
+ hpOutput.h iCBConstruct.h iCBSearch.h iLBC_decode.h iLBC_define.h \
+ iLBC_encode.h lsf.h packing.h syntFilter.h
-INCLUDES = -I@top_srcdir@
+INCLUDES = -I$(top_srcdir)
AM_CFLAGS = -D_REENTRANT