ref: d5cb06305b6707a51d976cf79ae513c2fe023382
parent: ca5bf5b0496137bc57e3a0dfd0fa829a53736728
author: Ralph Giles <[email protected]>
date: Tue Nov 19 12:50:05 EST 2013
Fix 'make distclean'. Automake's dependency tracking seems to be confused by our asm generation double-indirection. It's sufficient to have just CLEANFILES = $(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S) to fix the error about 'armopts-gnu.S' not being cleaned, but celt_pitch_xcorr_arm-gnu.S is also not cleaned without raising a warning. Therefore we explicitly clean both sets of ARM_ASM.
--- a/Makefile.am
+++ b/Makefile.am
@@ -38,6 +38,9 @@
endif
endif
+CLEANFILES = $(CELT_SOURCES_ARM_ASM:.s=-gnu.S) \
+ $(CELT_AM_SOURCES_ARM_ASM:.s.in=-gnu.S)
+
include celt_headers.mk
include silk_headers.mk
include opus_headers.mk