diff options
author | Ron <ron@debian.org> | 2013-11-19 17:34:12 +1030 |
---|---|---|
committer | Ron <ron@debian.org> | 2013-11-19 17:34:12 +1030 |
commit | 135d1c9848cb5114f485c02d969fd1717045dcef (patch) | |
tree | f88af410a3c1b32f2b3468bba15003853ec197dc /Makefile.am | |
parent | d5cb06305b6707a51d976cf79ae513c2fe023382 (diff) | |
download | opus-135d1c9848cb5114f485c02d969fd1717045dcef.tar.gz |
More make dist fixes
Don't include the generated celt/arm/celt_pitch_xcorr_arm-gnu.S in the
dist tarball, but do include its celt_pitch_xcorr_arm.s source file.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ca8ed4d0..c39d8031 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,7 +31,7 @@ if CPU_ARM CELT_SOURCES += $(CELT_SOURCES_ARM) SILK_SOURCES += $(SILK_SOURCES_ARM) if OPUS_ARM_EXTERNAL_ASM -CELT_SOURCES += $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) +nodist_libopus_la_SOURCES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) BUILT_SOURCES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) \ $(CELT_AM_SOURCES_ARM_ASM:.s.in=.s) \ $(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S) @@ -122,6 +122,7 @@ EXTRA_DIST = version.mk \ Makefile.unix \ tests/run_vectors.sh \ celt/arm/arm2gnu.pl \ + celt/arm/celt_pitch_xcorr_arm.s \ win32/VS2010/silk_float.vcxproj \ win32/VS2010/celt.vcxproj.filters \ win32/VS2010/opus.vcxproj \ |