Browse Source

Fix missing files in the distributed archive and prevent intallation of private headers

pull/1/head
François Grisez 11 years ago
parent
commit
e61851f533
4 changed files with 11 additions and 5 deletions
  1. +2
    -2
      include/Makefile.am
  2. +4
    -2
      include/bcg729/Makefile.am
  3. +2
    -0
      test/Makefile.am
  4. +3
    -1
      test/bin/Makefile.am

+ 2
- 2
include/Makefile.am View File

@ -1,6 +1,6 @@
SUBDIRS = bcg729
include_HEADERS= adaptativeCodebookSearch.h \
private_headers= adaptativeCodebookSearch.h \
basicOperationsMacros.h \
codebooks.h \
codecParameters.h \
@ -28,4 +28,4 @@ include_HEADERS= adaptativeCodebookSearch.h \
typedef.h \
utils.h
EXTRA_DIST=$(include_HEADERS)
EXTRA_DIST=$(private_headers)

+ 4
- 2
include/bcg729/Makefile.am View File

@ -1,8 +1,10 @@
bcg729_includedir=$(includedir)/bcg729
public_headers=encoder.h decoder.h
bcg729_include_HEADERS=
if !BUILD_MSBCG729
bcg729_include_HEADERS+=encoder.h decoder.h
bcg729_include_HEADERS+=$(public_headers)
endif
EXTRA_DIST=$(bcg729_include_HEADERS)
EXTRA_DIST=$(public_headers)

+ 2
- 0
test/Makefile.am View File

@ -1,3 +1,5 @@
SUBDIRS = bin
TESTS = testCampaignAll
EXTRA_DIST=testCampaignAll

+ 3
- 1
test/bin/Makefile.am View File

@ -1,7 +1,9 @@
check_PROGRAMS=adaptativeCodebookSearchTest computeAdaptativeCodebookGainTest computeLPTest computeWeightedSpeechTest decodeAdaptativeCodeVectorTest decodeFixedCodeVectorTest decodeGainsTest decodeLSPTest \
decoderTest encoderTest decoderMultiChannelTest encoderMultiChannelTest findOpenLoopPitchDelayTest fixedCodebookSearchTest g729FixedPointMathTest gainQuantizationTest interpolateqLSPAndConvert2LPTest \
LP2LSPConversionTest LPSynthesisFilterTest LSPQuantizationTest postFilterTest postProcessingTest preProcessingTest
util_src=$(top_srcdir)/test/src/testUtils.c
util_src= \
$(top_srcdir)/test/src/testUtils.c \
$(top_srcdir)/test/src/testUtils.h
adaptativeCodebookSearchTest_SOURCES=$(top_srcdir)/test/src/adaptativeCodebookSearchTest.c $(util_src)
computeAdaptativeCodebookGainTest_SOURCES=$(top_srcdir)/test/src/computeAdaptativeCodebookGainTest.c $(util_src)


Loading…
Cancel
Save